diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-03-13 15:42:27 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-03-13 15:42:27 +0000 |
commit | be7f79867e4d989fc9cb7fb9e8b0b8ec55956875 (patch) | |
tree | f5ae688b318dfb7456351bb33a5a30f28bb9dedc /src/mainboard/supermicro/x6dhe_g | |
parent | cc46e73a0221d08a30c78adfc568f162cdda407d (diff) | |
download | coreboot-be7f79867e4d989fc9cb7fb9e8b0b8ec55956875.tar.xz |
This, ladies and gentlement, is commit #4000.
Use the (almost) same strict CFLAGS in v2 that we use on v3. And fix a few
include files and missing prototypes. Also, fix up the Config-abuild.lb files
to properly work for cross compiling.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4000 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/supermicro/x6dhe_g')
-rw-r--r-- | src/mainboard/supermicro/x6dhe_g/chip.h | 2 | ||||
-rw-r--r-- | src/mainboard/supermicro/x6dhe_g/mainboard.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/supermicro/x6dhe_g/chip.h b/src/mainboard/supermicro/x6dhe_g/chip.h index b6e23b2688..e168812d0e 100644 --- a/src/mainboard/supermicro/x6dhe_g/chip.h +++ b/src/mainboard/supermicro/x6dhe_g/chip.h @@ -1,4 +1,4 @@ -struct chip_operations mainboard_ops; +extern struct chip_operations mainboard_ops; struct mainboard_config { int nothing; diff --git a/src/mainboard/supermicro/x6dhe_g/mainboard.c b/src/mainboard/supermicro/x6dhe_g/mainboard.c index 343c9bb7da..a242dddcb3 100644 --- a/src/mainboard/supermicro/x6dhe_g/mainboard.c +++ b/src/mainboard/supermicro/x6dhe_g/mainboard.c @@ -1,7 +1,7 @@ #include <device/device.h> #include "chip.h" -struct chip_operations supermicro_x6dhe_g_ops = { +struct chip_operations mainboard_ops = { CHIP_NAME("Supermicro X6DHE-G Mainboard") }; |