Skip to content

Commit

Permalink
[MTD] Remove MODULE_DEVICE_TABLE() for ICHx flash driver
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
David Woodhouse authored and Thomas Gleixner committed Jul 7, 2005
1 parent fb8d82a commit b9c86d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/mtd/maps/ichxrom.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* ichxrom.c
*
* Normal mappings of chips in physical memory
* $Id: ichxrom.c,v 1.17 2005/03/18 14:04:35 gleixner Exp $
* $Id: ichxrom.c,v 1.18 2005/07/07 10:26:20 dwmw2 Exp $
*/

#include <linux/module.h>
Expand Down Expand Up @@ -338,9 +338,9 @@ static struct pci_device_id ichxrom_pci_tbl[] __devinitdata = {
{ 0, },
};

#if 0
MODULE_DEVICE_TABLE(pci, ichxrom_pci_tbl);

#if 0
static struct pci_driver ichxrom_driver = {
.name = MOD_NAME,
.id_table = ichxrom_pci_tbl,
Expand Down

0 comments on commit b9c86d5

Please sign in to comment.