From 93f6a6771ba04b217e4c8bbca9196fd16e364479 Mon Sep 17 00:00:00 2001 From: wdenk Date: Thu, 1 Jul 2004 20:28:03 +0000 Subject: * Patches by Richard Woodruff, 10 Jun 2004: - fix problems with examples/stubs.c for GCC >= 3.4 - fix problems with gd initialization * Enable FAT filesystem support for HMI10 board --- lib_ppc/board.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib_ppc') diff --git a/lib_ppc/board.c b/lib_ppc/board.c index c9e38df..7560a42 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -353,6 +353,8 @@ void board_init_f (ulong bootflag) /* Pointer is writable since we allocated a register for it */ gd = (gd_t *) (CFG_INIT_RAM_ADDR + CFG_GBL_DATA_OFFSET); + /* compiler optimization barrier needed for GCC >= 3.4 */ + __asm__ __volatile__("": : :"memory"); #if !(defined(CONFIG_8260) || defined(CONFIG_MPC8560)) /* Clear initial global data */ -- cgit v1.1