summaryrefslogtreecommitdiff
path: root/src/mainboard/tyan
diff options
context:
space:
mode:
authorPatrick Georgi <patrick.georgi@secunet.com>2011-02-24 07:43:37 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2011-02-24 07:43:37 +0000
commit20bd19619e8b394ef8d2befb0996bdebad2727f4 (patch)
tree35b769c72e739ffe446682c489ebff8d36e68335 /src/mainboard/tyan
parentc977c7df7189c251ccfb7d0ed09178833f779809 (diff)
downloadcoreboot-20bd19619e8b394ef8d2befb0996bdebad2727f4.tar.xz
Tyan/s2735 doesn't need to define its own hard_reset function anymore.
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
Diffstat (limited to 'src/mainboard/tyan')
-rw-r--r--src/mainboard/tyan/s2735/Kconfig1
-rw-r--r--src/mainboard/tyan/s2735/reset.c8
2 files changed, 0 insertions, 9 deletions
diff --git a/src/mainboard/tyan/s2735/Kconfig b/src/mainboard/tyan/s2735/Kconfig
index c4b15807ec..e1f475b9ba 100644
--- a/src/mainboard/tyan/s2735/Kconfig
+++ b/src/mainboard/tyan/s2735/Kconfig
@@ -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
index d40d254cc5..0000000000
--- a/src/mainboard/tyan/s2735/reset.c
+++ /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();
-}