From: Li-Ta Lo Date: Thu, 20 Apr 2006 22:54:32 +0000 (+0000) Subject: more 5536 -> 5536 conversion X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=a910a3a02291b8bceeaadaae0c1745124fe0fea8;p=coreboot.git more 5536 -> 5536 conversion git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2269 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- diff --git a/src/southbridge/amd/cs5535/Config.lb b/src/southbridge/amd/cs5535/Config.lb index 1c76357cb..73d8bba3f 100644 --- a/src/southbridge/amd/cs5535/Config.lb +++ b/src/southbridge/amd/cs5535/Config.lb @@ -1,4 +1,4 @@ #config chip.h -driver cs5536.o +driver cs5535.o #driver cs5535_pci.o #driver cs5535_ide.o diff --git a/src/southbridge/amd/cs5536/Config.lb b/src/southbridge/amd/cs5536/Config.lb index 1c76357cb..36b0f97e7 100644 --- a/src/southbridge/amd/cs5536/Config.lb +++ b/src/southbridge/amd/cs5536/Config.lb @@ -1,4 +1,4 @@ #config chip.h driver cs5536.o -#driver cs5535_pci.o -#driver cs5535_ide.o +#driver cs5536_pci.o +#driver cs5536_ide.o diff --git a/src/southbridge/amd/cs5536/cs5536.h b/src/southbridge/amd/cs5536/cs5536.h index 82d657204..10259c6e6 100644 --- a/src/southbridge/amd/cs5536/cs5536.h +++ b/src/southbridge/amd/cs5536/cs5536.h @@ -1,4 +1,4 @@ -#ifndef _CS5535_H -#define _CS5535_H +#ifndef _CS5536_H +#define _CS5536_H #endif diff --git a/src/southbridge/amd/cs5536/cs5536_ide.c b/src/southbridge/amd/cs5536/cs5536_ide.c index 123f775fb..284b5037d 100644 --- a/src/southbridge/amd/cs5536/cs5536_ide.c +++ b/src/southbridge/amd/cs5536/cs5536_ide.c @@ -3,16 +3,16 @@ #include #include #include -#include "cs5535.h" +#include "cs5536.h" static void ide_init(struct device *dev) { - printk_spew("cs5535_ide: %s\n", __FUNCTION__); + printk_spew("cs5536_ide: %s\n", __FUNCTION__); } static void ide_enable(struct device *dev) { - printk_spew("cs5535_ide: %s\n", __FUNCTION__); + printk_spew("cs5536_ide: %s\n", __FUNCTION__); } static struct device_operations ide_ops = { @@ -25,6 +25,6 @@ static struct device_operations ide_ops = { static struct pci_driver ide_driver __pci_driver = { .ops = &ide_ops, - .vendor = PCI_VENDOR_ID_NS, - .device = PCI_DEVICE_ID_NS_CS5535_IDE, + .vendor = PCI_VENDOR_ID_AMD, + .device = PCI_DEVICE_ID_AMD_CS5536_IDE, };