Tyan/s2735 doesn't need to define its own hard_reset function anymore.
authorPatrick Georgi <patrick.georgi@secunet.com>
Thu, 24 Feb 2011 07:43:37 +0000 (07:43 +0000)
committerPatrick Georgi <patrick.georgi@coresystems.de>
Thu, 24 Feb 2011 07:43:37 +0000 (07:43 +0000)
The southbridge already provides hard_reset.

Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Acked-by: Patrick Georgi <patrick.georgi@secunet.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6378 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/mainboard/tyan/s2735/Kconfig
src/mainboard/tyan/s2735/reset.c [deleted file]

index c4b15807ecc410a058ddd3773f342ec3ce788f0c..e1f475b9ba56e342929b5a4b0bf02c333f10b37a 100644 (file)
@@ -9,7 +9,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
        select SOUTHBRIDGE_INTEL_I82801EX
        select SUPERIO_WINBOND_W83627HF
        select HAVE_HARD_RESET
-       select BOARD_HAS_HARD_RESET
        select HAVE_PIRQ_TABLE
        select HAVE_MP_TABLE
        select UDELAY_TSC
diff --git a/src/mainboard/tyan/s2735/reset.c b/src/mainboard/tyan/s2735/reset.c
deleted file mode 100644 (file)
index d40d254..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <reset.h>
-void i82801ex_hard_reset(void);
-
-/* FIXME: There's another hard_reset() in romstage.c. Why? */
-void hard_reset(void)
-{
-       i82801ex_hard_reset();
-}