aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/tyan
diff options
context:
space:
mode:
authorLi-Ta Lo <ollie@lanl.gov>2004-04-30 23:11:23 +0000
committerLi-Ta Lo <ollie@lanl.gov>2004-04-30 23:11:23 +0000
commit52f851dd1da8cefb3fb6e4795dc419d76d2b50b1 (patch)
tree7ce1f6a1fe5fed5ed4021d33310b8649f5c5d036 /src/mainboard/tyan
parentd16753be863e6c5729af904f4034495b4a58efe9 (diff)
put extern keyword in front of declaration, make the compiler do it job
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1545 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/tyan')
-rw-r--r--src/mainboard/tyan/s2885/Config.lb2
-rw-r--r--src/mainboard/tyan/s2885/mainboard.c20
2 files changed, 10 insertions, 12 deletions
diff --git a/src/mainboard/tyan/s2885/Config.lb b/src/mainboard/tyan/s2885/Config.lb
index 33fffe6b48..649259f1f2 100644
--- a/src/mainboard/tyan/s2885/Config.lb
+++ b/src/mainboard/tyan/s2885/Config.lb
@@ -39,7 +39,7 @@ driver mainboard.o
#dir /drivers/si/3114
#dir /drivers/intel/82551
driver ti_firewire.o
-#object reset.o
+
if HAVE_MP_TABLE object mptable.o end
if HAVE_PIRQ_TABLE object irq_tables.o end
#
diff --git a/src/mainboard/tyan/s2885/mainboard.c b/src/mainboard/tyan/s2885/mainboard.c
index b3e7c83cc9..559f5b450e 100644
--- a/src/mainboard/tyan/s2885/mainboard.c
+++ b/src/mainboard/tyan/s2885/mainboard.c
@@ -6,11 +6,12 @@
#include <device/pci_ops.h>
#include "../../../northbridge/amd/amdk8/northbridge.h"
#include "chip.h"
-//#include <part/mainboard.h>
+
unsigned long initial_apicid[CONFIG_MAX_CPUS] =
{
0,1
};
+
#if 0
static void fixup_lsi_53c1030(struct device *pdev)
{
@@ -36,7 +37,7 @@ static void fixup_lsi_53c1030(struct device *pdev)
}
#endif
-//extern static void lsi_scsi_init(struct device *dev);
+
#if 0
static void print_pci_regs(struct device *dev)
{
@@ -165,12 +166,7 @@ enable(struct chip *chip, enum chip_pass pass)
}
}
-void final_mainboard_fixup(void)
-{
-#if 0
- enable_ide_devices();
-#endif
-}
+
static struct device_operations mainboard_operations = {
.read_resources = root_dev_read_resources,
.set_resources = root_dev_set_resources,
@@ -183,15 +179,17 @@ static struct device_operations mainboard_operations = {
static void enumerate(struct chip *chip)
{
struct chip *child;
+
+ /* update device operation for dynamic root */
dev_root.ops = &mainboard_operations;
chip->dev = &dev_root;
chip->bus = 0;
- for(child = chip->children; child; child = child->next) {
- child->bus = &dev_root.link[0];
+ for (child = chip->children; child; child = child->next) {
+ child->bus = &dev_root.link[0];
}
}
struct chip_control mainboard_tyan_s2885_control = {
- .enable = enable,
+ .enable = enable,
.enumerate = enumerate,
.name = "Tyan s2885 mainboard ",
};