diff options
Diffstat (limited to 'board/freescale')
-rw-r--r-- | board/freescale/mpc8641hpcn/mpc8641hpcn.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/board/freescale/mpc8641hpcn/mpc8641hpcn.c b/board/freescale/mpc8641hpcn/mpc8641hpcn.c index c94fc3f1d9c..1e35dfa7c46 100644 --- a/board/freescale/mpc8641hpcn/mpc8641hpcn.c +++ b/board/freescale/mpc8641hpcn/mpc8641hpcn.c @@ -374,3 +374,12 @@ void board_reset(void) while (1) ; } + +#if (CONFIG_NUM_CPUS > 1) +extern void cpu_mp_lmb_reserve(struct lmb *lmb); + +void board_lmb_reserve(struct lmb *lmb) +{ + cpu_mp_lmb_reserve(lmb); +} +#endif |