more 5536 -> 5536 conversion
authorLi-Ta Lo <ollie@lanl.gov>
Thu, 20 Apr 2006 22:54:32 +0000 (22:54 +0000)
committerLi-Ta Lo <ollie@lanl.gov>
Thu, 20 Apr 2006 22:54:32 +0000 (22:54 +0000)
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2269 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/southbridge/amd/cs5535/Config.lb
src/southbridge/amd/cs5536/Config.lb
src/southbridge/amd/cs5536/cs5536.h
src/southbridge/amd/cs5536/cs5536_ide.c

index 1c76357cb360e31b93f53907a02216a7ae9776db..73d8bba3fe85b9b2a7e7e43494e891a0f7bfb8ed 100644 (file)
@@ -1,4 +1,4 @@
 #config chip.h
-driver cs5536.o
+driver cs5535.o
 #driver cs5535_pci.o
 #driver cs5535_ide.o
index 1c76357cb360e31b93f53907a02216a7ae9776db..36b0f97e7a2bf37920658171c00c8c242da403dd 100644 (file)
@@ -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
index 82d657204a62621b9f7a8f7711f5fa6735ce9cd6..10259c6e6d197b5eb44fe965172447d251eabd9f 100644 (file)
@@ -1,4 +1,4 @@
-#ifndef _CS5535_H
-#define _CS5535_H
+#ifndef _CS5536_H
+#define _CS5536_H
 
 #endif
index 123f775fbad7a7451d520be56ebd16c7bac64bf5..284b5037d880a7790fce8c62050eebf01b56bacd 100644 (file)
@@ -3,16 +3,16 @@
 #include <device/pci.h>
 #include <device/pci_ids.h>
 #include <device/pci_ops.h>
-#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,
 };