dect
/
linux-2.6
Archived
13
0
Fork 0

Staging: pata_rdc: remove broken flag

The "in_module_init" flag was wrong, so just remove it, it's not needed.


Cc: Kevin Huang  <Kevin.Huang@rdc.com.tw>
Cc: Tomy Wang <Tomy.Wang@rdc.com.tw>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Greg Kroah-Hartman 2009-06-03 10:17:47 -07:00
parent 6b23e3104d
commit c7a8c592c1
1 changed files with 0 additions and 11 deletions

View File

@ -38,10 +38,6 @@ static const struct pci_device_id rdc_pata_id_table[] = {
};
MODULE_DEVICE_TABLE(pci, rdc_pata_id_table);
static unsigned int in_module_init = 1; /* hotplugging check??? */
/* ata device data */
/* see ATA Host Adapters Standards. */
static struct pci_bits ATA_Decode_Enable_Bits[] = {
{ 0x41U, 1U, 0x80UL, 0x80UL }, /* port (Channel) 0 */
@ -982,11 +978,6 @@ static int __devinit rdc_init_one(struct pci_dev *pdev,
dbgprintf("rdc_init_one\n");
/* no hotplugging support (FIXME) */ /* why??? */
if (!in_module_init) {
dbgprintf("rdc_init_one in_module_init == 0 failed \n");
return -ENODEV;
}
port_info[0] = rdc_pata_port_info[ent->driver_data];
port_info[1] = rdc_pata_port_info[ent->driver_data];
@ -1026,8 +1017,6 @@ static int __init pata_rdc_init(void)
return rc;
}
in_module_init = 0;
return 0;
}