Tidy up identifiers, per Uwe's suggestion. Trivial.

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



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3563 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Ed Swierk 2008-09-03 23:32:30 +00:00
parent 12aa5d9acf
commit 1149a3692f
1 changed files with 4 additions and 4 deletions

View File

@ -76,25 +76,25 @@ static struct device_operations sata_ops = {
.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,