aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/via
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2009-03-24 12:28:44 +0000
committerStefan Reinauer <stepan@openbios.org>2009-03-24 12:28:44 +0000
commitb8e2517055d5f8164c6a4070d1e71c789071fc10 (patch)
treec2ad03b5f159fe5d432b3cb2f35be705f19ddec7 /src/northbridge/via
parent5f28c09ce54c5dabd0aa4250203d2b38295a1fad (diff)
Every object file with a struct pci_driver ... __pci_driver needs to be marked
as "driver" instead of "object" in order to get the init code actually executed. This patch fixes up all northbridges that did not do this before. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Joseph Smith <joe@settoplinux.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4027 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge/via')
-rw-r--r--src/northbridge/via/cn700/Config.lb2
-rw-r--r--src/northbridge/via/vt8601/Config.lb2
-rw-r--r--src/northbridge/via/vt8623/Config.lb2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/northbridge/via/cn700/Config.lb b/src/northbridge/via/cn700/Config.lb
index aca169c868..6a0b60cfe0 100644
--- a/src/northbridge/via/cn700/Config.lb
+++ b/src/northbridge/via/cn700/Config.lb
@@ -20,6 +20,6 @@
config chip.h
object vgabios.o
-object northbridge.o
+driver northbridge.o
driver agp.o
driver vga.o
diff --git a/src/northbridge/via/vt8601/Config.lb b/src/northbridge/via/vt8601/Config.lb
index 4a0c2c8658..16463e0ccd 100644
--- a/src/northbridge/via/vt8601/Config.lb
+++ b/src/northbridge/via/vt8601/Config.lb
@@ -1,2 +1,2 @@
config chip.h
-object northbridge.o
+driver northbridge.o
diff --git a/src/northbridge/via/vt8623/Config.lb b/src/northbridge/via/vt8623/Config.lb
index 4a0c2c8658..16463e0ccd 100644
--- a/src/northbridge/via/vt8623/Config.lb
+++ b/src/northbridge/via/vt8623/Config.lb
@@ -1,2 +1,2 @@
config chip.h
-object northbridge.o
+driver northbridge.o