|
@@ -382,13 +382,6 @@ static int cp_get_eeprom(struct net_device *dev,
|
|
static int cp_set_eeprom(struct net_device *dev,
|
|
static int cp_set_eeprom(struct net_device *dev,
|
|
struct ethtool_eeprom *eeprom, u8 *data);
|
|
struct ethtool_eeprom *eeprom, u8 *data);
|
|
|
|
|
|
-static DEFINE_PCI_DEVICE_TABLE(cp_pci_tbl) = {
|
|
|
|
- { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, PCI_DEVICE_ID_REALTEK_8139), },
|
|
|
|
- { PCI_DEVICE(PCI_VENDOR_ID_TTTECH, PCI_DEVICE_ID_TTTECH_MC322), },
|
|
|
|
- { },
|
|
|
|
-};
|
|
|
|
-MODULE_DEVICE_TABLE(pci, cp_pci_tbl);
|
|
|
|
-
|
|
|
|
static struct {
|
|
static struct {
|
|
const char str[ETH_GSTRING_LEN];
|
|
const char str[ETH_GSTRING_LEN];
|
|
} ethtool_stats_keys[] = {
|
|
} ethtool_stats_keys[] = {
|
|
@@ -2106,6 +2099,13 @@ static int cp_resume (struct pci_dev *pdev)
|
|
}
|
|
}
|
|
#endif /* CONFIG_PM */
|
|
#endif /* CONFIG_PM */
|
|
|
|
|
|
|
|
+static const struct pci_device_id cp_pci_tbl[] = {
|
|
|
|
+ { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, PCI_DEVICE_ID_REALTEK_8139), },
|
|
|
|
+ { PCI_DEVICE(PCI_VENDOR_ID_TTTECH, PCI_DEVICE_ID_TTTECH_MC322), },
|
|
|
|
+ { },
|
|
|
|
+};
|
|
|
|
+MODULE_DEVICE_TABLE(pci, cp_pci_tbl);
|
|
|
|
+
|
|
static struct pci_driver cp_driver = {
|
|
static struct pci_driver cp_driver = {
|
|
.name = DRV_NAME,
|
|
.name = DRV_NAME,
|
|
.id_table = cp_pci_tbl,
|
|
.id_table = cp_pci_tbl,
|