diff options
Diffstat (limited to 'cpu/mpc85xx/mp.c')
-rw-r--r-- | cpu/mpc85xx/mp.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cpu/mpc85xx/mp.c b/cpu/mpc85xx/mp.c index 6530cb176b..6ae7f0a72c 100644 --- a/cpu/mpc85xx/mp.c +++ b/cpu/mpc85xx/mp.c @@ -1,5 +1,5 @@ /* - * Copyright 2008-2009 Freescale Semiconductor, Inc. + * Copyright 2008-2010 Freescale Semiconductor, Inc. * * See file CREDITS for list of people who contributed to this * project. @@ -68,6 +68,12 @@ int cpu_status(int nr) return 0; } +int cpu_disable(int nr) +{ + /* dummy function so common/cmd_mp.c will build */ + return 1; +} + static u8 boot_entry_map[4] = { 0, BOOT_ENTRY_PIR, |