diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-10-08 20:17:14 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-10-08 20:17:14 +0000 |
commit | ebb43d69439d847e87e18ac332e71b9b0476936a (patch) | |
tree | e267ec0e6831b74e0b70d6a18a612de93229bd28 /src/southbridge/amd/cs5535/cs5535.c | |
parent | e3fcd45a7fa450cc5befdcc8bcfa7d8541f4e81e (diff) | |
download | coreboot-ebb43d69439d847e87e18ac332e71b9b0476936a.tar.xz |
Fix CS5535 build for kconfig, more kconfig boards (lippert, artec)
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4748 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/amd/cs5535/cs5535.c')
-rw-r--r-- | src/southbridge/amd/cs5535/cs5535.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/southbridge/amd/cs5535/cs5535.c b/src/southbridge/amd/cs5535/cs5535.c index 6f351ec48a..17bd902e0b 100644 --- a/src/southbridge/amd/cs5535/cs5535.c +++ b/src/southbridge/amd/cs5535/cs5535.c @@ -108,3 +108,11 @@ static const struct pci_driver cs5535_pci_driver __pci_driver = { .vendor = PCI_VENDOR_ID_NS, .device = PCI_DEVICE_ID_NS_CS5535 }; + +struct chip_operations southbridge_amd_cs5535_ops = { + CHIP_NAME("AMD Geode CS5535 Southbridge") + /* This is only called when this device is listed in the + * static device tree. + */ + .enable_dev = southbridge_enable, +}; |