fix copy and paste errors in ne2k.c

Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6512 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2011-04-18 02:26:56 +00:00 committed by Stefan Reinauer
parent ebc93def5b
commit 261f842c1c
1 changed files with 2 additions and 3 deletions

View File

@ -444,8 +444,7 @@ static void read_resources(struct device *dev)
return; return;
} }
static struct device_operations ne2k_ops = {
static struct device_operations si_sata_ops = {
.read_resources = read_resources, .read_resources = read_resources,
.set_resources = pci_dev_set_resources, .set_resources = pci_dev_set_resources,
.enable_resources = pci_dev_enable_resources, .enable_resources = pci_dev_enable_resources,
@ -453,7 +452,7 @@ static struct device_operations si_sata_ops = {
.scan_bus = 0, .scan_bus = 0,
}; };
static const struct pci_driver si_sata_driver __pci_driver = { static const struct pci_driver ne2k_driver __pci_driver = {
.ops = &si_sata_ops, .ops = &si_sata_ops,
.vendor = 0x10ec, .vendor = 0x10ec,
.device = 0x8029, .device = 0x8029,