diff options
author | Wolfgang Denk <wd@denx.de> | 2008-03-27 00:16:34 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-03-27 00:16:34 +0100 |
commit | 38b189fe749824ea9b1c5422865e78b4b7eb2494 (patch) | |
tree | 76ee4026df54c7c21a9844d45cb1a5cdbcc339bf /include/common.h | |
parent | 0207fefa4dc530dba518abf37c2957915251b416 (diff) | |
parent | dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15 (diff) | |
download | u-boot-imx-38b189fe749824ea9b1c5422865e78b4b7eb2494.zip u-boot-imx-38b189fe749824ea9b1c5422865e78b4b7eb2494.tar.gz u-boot-imx-38b189fe749824ea9b1c5422865e78b4b7eb2494.tar.bz2 |
Merge branch 'master' of git://www.denx.de/git/u-boot-mpc85xx
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h index e03ead1..39bcd30 100644 --- a/include/common.h +++ b/include/common.h @@ -669,4 +669,11 @@ void inline show_boot_progress (int val); #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) +/* Multicore arch functions */ +#ifdef CONFIG_MP +int cpu_status(int nr); +int cpu_reset(int nr); +int cpu_release(int nr, int argc, char *argv[]); +#endif + #endif /* __COMMON_H_ */ |