Commit e2ee68a3 authored by Chas Williams's avatar Chas Williams Committed by David S. Miller

[ATM]: [drivers] add missing pci_tbl exports (pointed out by Adam

parent b28b525c
......@@ -2439,6 +2439,8 @@ static struct pci_device_id amb_pci_tbl[] = {
{ 0, }
};
MODULE_DEVICE_TABLE(pci, amb_pci_tbl);
static struct pci_driver amb_driver = {
.name = "amb",
.probe = amb_probe,
......
......@@ -3051,6 +3051,8 @@ static struct pci_device_id he_pci_tbl[] = {
{ 0, }
};
MODULE_DEVICE_TABLE(pci, he_pci_tbl);
static struct pci_driver he_driver = {
.name = "he",
.probe = he_init_one,
......
......@@ -2913,6 +2913,8 @@ static struct pci_device_id hrz_pci_tbl[] = {
{ 0, }
};
MODULE_DEVICE_TABLE(pci, hrz_pci_tbl);
static struct pci_driver hrz_driver = {
.name = "horizon",
.probe = hrz_probe,
......
......@@ -3820,6 +3820,8 @@ static struct pci_device_id idt77252_pci_tbl[] =
{ 0, }
};
MODULE_DEVICE_TABLE(pci, idt77252_pci_tbl);
static struct pci_driver idt77252_driver = {
.name = "idt77252",
.id_table = idt77252_pci_tbl,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment