00ce038143eb26f653eef831730ed0e572d52808
[coreboot.git] / src / southbridge / intel / i82801cx / i82801cx_nic.c
1 #include <console/console.h>
2 #include <device/device.h>
3 #include <device/pci.h>
4 #include <device/pci_ids.h>
5 #include <device/pci_ops.h>
6 #include "i82801cx.h"
7
8
9 static struct device_operations nic_ops  = {
10         .read_resources   = pci_dev_read_resources,
11         .set_resources    = pci_dev_set_resources,
12         .enable_resources = pci_dev_enable_resources,
13         .init             = 0,
14         .scan_bus         = 0,
15 };
16
17 static const struct pci_driver nic_driver __pci_driver = {
18         .ops    = &nic_ops,
19         .vendor = PCI_VENDOR_ID_INTEL,
20         .device = PCI_DEVICE_ID_INTEL_82801CA_LAN,
21 };