diff options
author | David Woodhouse <dwmw2@infradead.org> | 2005-07-07 06:26:24 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@mtd.linutronix.de> | 2005-07-07 09:40:54 -0400 |
commit | b9c86d595d2a11009c58c84a9a8792aeb4a8f278 (patch) | |
tree | c3c6c21b0a4a8edefc38166b3b2e0108892b0e71 | |
parent | fb8d82a865b1ff601fad8293cd6a2a1b1908545b (diff) |
[MTD] Remove MODULE_DEVICE_TABLE() for ICHx flash driver
This prevents it from automatically getting loaded by hotplug because
we happen to notice you have this chipset. Let's stick with having to
load the drivers which let you overwrite your BIOS _manually_
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | drivers/mtd/maps/ichxrom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/maps/ichxrom.c b/drivers/mtd/maps/ichxrom.c index 1800ceedf380..e505207cd489 100644 --- a/drivers/mtd/maps/ichxrom.c +++ b/drivers/mtd/maps/ichxrom.c | |||
@@ -2,7 +2,7 @@ | |||
2 | * ichxrom.c | 2 | * ichxrom.c |
3 | * | 3 | * |
4 | * Normal mappings of chips in physical memory | 4 | * Normal mappings of chips in physical memory |
5 | * $Id: ichxrom.c,v 1.17 2005/03/18 14:04:35 gleixner Exp $ | 5 | * $Id: ichxrom.c,v 1.18 2005/07/07 10:26:20 dwmw2 Exp $ |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #include <linux/module.h> | 8 | #include <linux/module.h> |
@@ -338,9 +338,9 @@ static struct pci_device_id ichxrom_pci_tbl[] __devinitdata = { | |||
338 | { 0, }, | 338 | { 0, }, |
339 | }; | 339 | }; |
340 | 340 | ||
341 | #if 0 | ||
341 | MODULE_DEVICE_TABLE(pci, ichxrom_pci_tbl); | 342 | MODULE_DEVICE_TABLE(pci, ichxrom_pci_tbl); |
342 | 343 | ||
343 | #if 0 | ||
344 | static struct pci_driver ichxrom_driver = { | 344 | static struct pci_driver ichxrom_driver = { |
345 | .name = MOD_NAME, | 345 | .name = MOD_NAME, |
346 | .id_table = ichxrom_pci_tbl, | 346 | .id_table = ichxrom_pci_tbl, |