aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/3c509.c1
-rw-r--r--drivers/net/3c59x.c1
-rw-r--r--drivers/net/ne3210.c1
-rw-r--r--drivers/net/tulip/de4x5.c1
4 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/3c509.c b/drivers/net/3c509.c
index 59c33925be62..b936373ab2a5 100644
--- a/drivers/net/3c509.c
+++ b/drivers/net/3c509.c
@@ -225,6 +225,7 @@ static struct eisa_device_id el3_eisa_ids[] = {
225 { "TCM5095" }, 225 { "TCM5095" },
226 { "" } 226 { "" }
227}; 227};
228MODULE_DEVICE_TABLE(eisa, el3_eisa_ids);
228 229
229static int el3_eisa_probe (struct device *device); 230static int el3_eisa_probe (struct device *device);
230 231
diff --git a/drivers/net/3c59x.c b/drivers/net/3c59x.c
index af301f09d674..df42e28cc80f 100644
--- a/drivers/net/3c59x.c
+++ b/drivers/net/3c59x.c
@@ -851,6 +851,7 @@ static struct eisa_device_id vortex_eisa_ids[] = {
851 { "TCM5970", CH_3C597 }, 851 { "TCM5970", CH_3C597 },
852 { "" } 852 { "" }
853}; 853};
854MODULE_DEVICE_TABLE(eisa, vortex_eisa_ids);
854 855
855static int vortex_eisa_probe(struct device *device); 856static int vortex_eisa_probe(struct device *device);
856static int vortex_eisa_remove(struct device *device); 857static int vortex_eisa_remove(struct device *device);
diff --git a/drivers/net/ne3210.c b/drivers/net/ne3210.c
index 0fa8e4d22769..d66328975425 100644
--- a/drivers/net/ne3210.c
+++ b/drivers/net/ne3210.c
@@ -343,6 +343,7 @@ static struct eisa_device_id ne3210_ids[] = {
343 { "NVL1801" }, 343 { "NVL1801" },
344 { "" }, 344 { "" },
345}; 345};
346MODULE_DEVICE_TABLE(eisa, ne3210_ids);
346 347
347static struct eisa_driver ne3210_eisa_driver = { 348static struct eisa_driver ne3210_eisa_driver = {
348 .id_table = ne3210_ids, 349 .id_table = ne3210_ids,
diff --git a/drivers/net/tulip/de4x5.c b/drivers/net/tulip/de4x5.c
index e661d0a9cc64..fb5fa7d68888 100644
--- a/drivers/net/tulip/de4x5.c
+++ b/drivers/net/tulip/de4x5.c
@@ -2114,6 +2114,7 @@ static struct eisa_device_id de4x5_eisa_ids[] = {
2114 { "DEC4250", 0 }, /* 0 is the board name index... */ 2114 { "DEC4250", 0 }, /* 0 is the board name index... */
2115 { "" } 2115 { "" }
2116}; 2116};
2117MODULE_DEVICE_TABLE(eisa, de4x5_eisa_ids);
2117 2118
2118static struct eisa_driver de4x5_eisa_driver = { 2119static struct eisa_driver de4x5_eisa_driver = {
2119 .id_table = de4x5_eisa_ids, 2120 .id_table = de4x5_eisa_ids,