diff options
-rw-r--r-- | src/southbridge/amd/cs5535/Config.lb | 4 | ||||
-rw-r--r-- | src/southbridge/amd/cs5535/chip.h | 14 |
2 files changed, 8 insertions, 10 deletions
diff --git a/src/southbridge/amd/cs5535/Config.lb b/src/southbridge/amd/cs5535/Config.lb index cc056d9ede..1c76357cb3 100644 --- a/src/southbridge/amd/cs5535/Config.lb +++ b/src/southbridge/amd/cs5535/Config.lb @@ -1,4 +1,4 @@ #config chip.h -driver cs5535.o +driver cs5536.o #driver cs5535_pci.o -driver cs5535_ide.o +#driver cs5535_ide.o diff --git a/src/southbridge/amd/cs5535/chip.h b/src/southbridge/amd/cs5535/chip.h index 07a3907f3f..3e9be9938e 100644 --- a/src/southbridge/amd/cs5535/chip.h +++ b/src/southbridge/amd/cs5535/chip.h @@ -1,12 +1,10 @@ -#ifndef _SOUTHBRIDGE_AMD_CS5535 -#define _SOUTHBRIDGE_AMD_CS5535 +#ifndef _SOUTHBRIDGE_AMD_CS5536 +#define _SOUTHBRIDGE_AMD_CS5536 -extern struct chip_operations southbridge_amd_cs5535_ops; +extern struct chip_operations southbridge_amd_cs5536_ops; -struct southbridge_amd_cs5535_config { - /* PCI function enables so the pci scan bus finds the devices */ - int enable_ide; - int enable_nvram; +struct southbridge_amd_cs5536_config { + int none; }; -#endif /* _SOUTHBRIDGE_AMD_CS5535 */ +#endif /* _SOUTHBRIDGE_AMD_CS5536 */ |