[coreboot] r3563 - trunk/coreboot-v2/src/southbridge/intel/i3100

svn at coreboot.org svn at coreboot.org
Thu Sep 4 01:32:31 CEST 2008


Author: eswierk
Date: 2008-09-04 01:32:30 +0200 (Thu, 04 Sep 2008)
New Revision: 3563

Modified:
   trunk/coreboot-v2/src/southbridge/intel/i3100/i3100_sata.c
Log:
Tidy up identifiers, per Uwe's suggestion.  Trivial.

Signed-off-by: Ed Swierk <eswierk at arastra.com>
Acked-by: Ed Swierk <eswierk at arastra.com>



Modified: trunk/coreboot-v2/src/southbridge/intel/i3100/i3100_sata.c
===================================================================
--- trunk/coreboot-v2/src/southbridge/intel/i3100/i3100_sata.c	2008-09-03 23:10:05 UTC (rev 3562)
+++ trunk/coreboot-v2/src/southbridge/intel/i3100/i3100_sata.c	2008-09-03 23:32:30 UTC (rev 3563)
@@ -76,25 +76,25 @@
 	.ops_pci          = &lops_pci,
 };
 
-static struct pci_driver sata_driver __pci_driver = {
+static struct pci_driver ide_driver __pci_driver = {
 	.ops    = &sata_ops,
 	.vendor = PCI_VENDOR_ID_INTEL,
 	.device = PCI_DEVICE_ID_INTEL_3100_IDE,
 };
 
-static struct pci_driver sata_driver_nr __pci_driver = {
+static struct pci_driver sata_driver __pci_driver = {
 	.ops    = &sata_ops,
 	.vendor = PCI_VENDOR_ID_INTEL,
 	.device = PCI_DEVICE_ID_INTEL_3100_AHCI,
 };
 
-static struct pci_driver sata_driver_ep80579 __pci_driver = {
+static struct pci_driver ide_driver_ep80579 __pci_driver = {
 	.ops    = &sata_ops,
 	.vendor = PCI_VENDOR_ID_INTEL,
 	.device = PCI_DEVICE_ID_INTEL_EP80579_IDE,
 };
 
-static struct pci_driver sata_driver_nr_ep80579 __pci_driver = {
+static struct pci_driver sata_driver_ep80579 __pci_driver = {
 	.ops    = &sata_ops,
 	.vendor = PCI_VENDOR_ID_INTEL,
 	.device = PCI_DEVICE_ID_INTEL_EP80579_AHCI,





More information about the coreboot mailing list