diff options
author | Alan Cox <alan@linux.intel.com> | 2009-05-06 17:10:08 +0100 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2009-06-10 07:50:17 -0400 |
commit | 347979a034539ab20f3bc0c30ac0ccd3c4fd4c2e (patch) | |
tree | 5dfb54ea1aefb323b88ebe5404c83b7db27df478 | |
parent | d50ce07d6fd8a422757a231f9d7293cbddeaec31 (diff) | |
download | kernel_samsung_espresso10-347979a034539ab20f3bc0c30ac0ccd3c4fd4c2e.zip kernel_samsung_espresso10-347979a034539ab20f3bc0c30ac0ccd3c4fd4c2e.tar.gz kernel_samsung_espresso10-347979a034539ab20f3bc0c30ac0ccd3c4fd4c2e.tar.bz2 |
ata_piix: Turn on hotplugging support for older chips
We can't do this for the later ones as they have all sorts of magic boot
time stuff that needs reviewing and the like. However we can do it for the
older ones and it turns out we need to as some IBM docking stations have a
second PIIX series device in them and without this change you can't use it
very well
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
-rw-r--r-- | drivers/ata/ata_piix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/ata_piix.c b/drivers/ata/ata_piix.c index 1aeb708..716e369 100644 --- a/drivers/ata/ata_piix.c +++ b/drivers/ata/ata_piix.c @@ -1509,8 +1509,8 @@ static int __devinit piix_init_one(struct pci_dev *pdev, dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n"); - /* no hotplugging support (FIXME) */ - if (!in_module_init) + /* no hotplugging support for later devices (FIXME) */ + if (!in_module_init && ent->driver_data >= ich5_sata) return -ENODEV; if (piix_broken_system_poweroff(pdev)) { |