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
This commit is contained in:
Patrick Georgi
2009-10-08 20:17:14 +00:00
parent e3fcd45a7f
commit ebb43d6943
12 changed files with 302 additions and 6 deletions

View File

@@ -1,9 +1,9 @@
#ifndef _SOUTHBRIDGE_AMD_CS5536
#define _SOUTHBRIDGE_AMD_CS5536
#ifndef _SOUTHBRIDGE_AMD_CS5535
#define _SOUTHBRIDGE_AMD_CS5535
extern struct chip_operations southbridge_amd_cs5536_ops;
extern struct chip_operations southbridge_amd_cs5535_ops;
struct southbridge_amd_cs5536_config {
struct southbridge_amd_cs5535_config {
int none;
};

View File

@@ -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,
};