diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2010-12-06 18:20:48 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2010-12-06 18:20:48 +0000 |
commit | 0f08c643fa3ea773a1b911978c20ddb6a37042ec (patch) | |
tree | 35218aea23a77da12dd07492708302f6acd6e91e /src/mainboard/supermicro/x6dhe_g | |
parent | 9b9791c29d0f4e88127f59bb87d53cfed65cd912 (diff) | |
download | coreboot-0f08c643fa3ea773a1b911978c20ddb6a37042ec.tar.xz |
Get rid of some useless/empty *_fixups.c files.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6144 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/supermicro/x6dhe_g')
-rw-r--r-- | src/mainboard/supermicro/x6dhe_g/romstage.c | 5 | ||||
-rw-r--r-- | src/mainboard/supermicro/x6dhe_g/x6dhe_g_fixups.c | 23 |
2 files changed, 4 insertions, 24 deletions
diff --git a/src/mainboard/supermicro/x6dhe_g/romstage.c b/src/mainboard/supermicro/x6dhe_g/romstage.c index a6dfe502a2..b6ae4df626 100644 --- a/src/mainboard/supermicro/x6dhe_g/romstage.c +++ b/src/mainboard/supermicro/x6dhe_g/romstage.c @@ -16,7 +16,6 @@ #include "debug.c" #include "watchdog.c" #include "reset.c" -#include "x6dhe_g_fixups.c" #include "superio/winbond/w83627hf/w83627hf_early_serial.c" #include "northbridge/intel/e7520/memory_initialized.c" #include "cpu/x86/bist.h" @@ -35,6 +34,10 @@ 0 ) #define DEVPRES1_CONFIG (DEVPRES1_D0F1 | DEVPRES1_D8F0) +static void mch_reset(void) {} +static void mainboard_set_e7520_pll(unsigned bits) {} +static void mainboard_set_e7520_leds(void) {} + static inline int spd_read_byte(unsigned device, unsigned address) { return smbus_read_byte(device, address); diff --git a/src/mainboard/supermicro/x6dhe_g/x6dhe_g_fixups.c b/src/mainboard/supermicro/x6dhe_g/x6dhe_g_fixups.c deleted file mode 100644 index cc3e41eb9f..0000000000 --- a/src/mainboard/supermicro/x6dhe_g/x6dhe_g_fixups.c +++ /dev/null @@ -1,23 +0,0 @@ -#include <arch/romcc_io.h> - -static void mch_reset(void) -{ - return; -} - - - -static void mainboard_set_e7520_pll(unsigned bits) -{ - return; -} - - -static void mainboard_set_e7520_leds(void) -{ - return; -} - - - - |