ide: fix ide_unregister() usage in host drivers

bast-ide.c/ide-cs.c/delkin_cb.c:

* Don't set 'restore' flag for ide_unregister() when initializing new
  interface.

rapide.c/ide-pnp.c/ide-cs.c/ide_platform.c/au1xxx-ide.c/delkin_cb.c/scc_pata.c:

* Don't set 'init_default' and 'restore' flags for ide_unregister() when
  removing interface.
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent 9e016a71
...@@ -53,7 +53,7 @@ bastide_register(unsigned int base, unsigned int aux, int irq, ...@@ -53,7 +53,7 @@ bastide_register(unsigned int base, unsigned int aux, int irq,
i = hwif->index; i = hwif->index;
if (hwif->present) if (hwif->present)
ide_unregister(i, 0, 1); ide_unregister(i, 0, 0);
else if (!hwif->hold) else if (!hwif->hold)
ide_init_port_data(hwif, i); ide_init_port_data(hwif, i);
......
...@@ -76,7 +76,7 @@ static void __devexit rapide_remove(struct expansion_card *ec) ...@@ -76,7 +76,7 @@ static void __devexit rapide_remove(struct expansion_card *ec)
ecard_set_drvdata(ec, NULL); ecard_set_drvdata(ec, NULL);
ide_unregister(hwif->index, 1, 1); ide_unregister(hwif->index, 0, 0);
ecard_release_resources(ec); ecard_release_resources(ec);
} }
......
...@@ -62,7 +62,7 @@ static void idepnp_remove(struct pnp_dev * dev) ...@@ -62,7 +62,7 @@ static void idepnp_remove(struct pnp_dev * dev)
ide_hwif_t *hwif = pnp_get_drvdata(dev); ide_hwif_t *hwif = pnp_get_drvdata(dev);
if (hwif) if (hwif)
ide_unregister(hwif->index, 1, 1); ide_unregister(hwif->index, 0, 0);
else else
printk(KERN_ERR "idepnp: Unable to remove device, please report.\n"); printk(KERN_ERR "idepnp: Unable to remove device, please report.\n");
} }
......
...@@ -163,7 +163,7 @@ static int idecs_register(unsigned long io, unsigned long ctl, unsigned long irq ...@@ -163,7 +163,7 @@ static int idecs_register(unsigned long io, unsigned long ctl, unsigned long irq
i = hwif->index; i = hwif->index;
if (hwif->present) if (hwif->present)
ide_unregister(i, 0, 1); ide_unregister(i, 0, 0);
else if (!hwif->hold) else if (!hwif->hold)
ide_init_port_data(hwif, i); ide_init_port_data(hwif, i);
...@@ -360,7 +360,7 @@ void ide_release(struct pcmcia_device *link) ...@@ -360,7 +360,7 @@ void ide_release(struct pcmcia_device *link)
if (info->ndev) { if (info->ndev) {
/* FIXME: if this fails we need to queue the cleanup somehow /* FIXME: if this fails we need to queue the cleanup somehow
-- need to investigate the required PCMCIA magic */ -- need to investigate the required PCMCIA magic */
ide_unregister(info->hd, 1, 1); ide_unregister(info->hd, 0, 0);
} }
info->ndev = 0; info->ndev = 0;
......
...@@ -122,7 +122,7 @@ static int __devexit plat_ide_remove(struct platform_device *pdev) ...@@ -122,7 +122,7 @@ static int __devexit plat_ide_remove(struct platform_device *pdev)
{ {
ide_hwif_t *hwif = pdev->dev.driver_data; ide_hwif_t *hwif = pdev->dev.driver_data;
ide_unregister(hwif->index, 1, 1); ide_unregister(hwif->index, 0, 0);
return 0; return 0;
} }
......
...@@ -678,7 +678,7 @@ static int au_ide_remove(struct device *dev) ...@@ -678,7 +678,7 @@ static int au_ide_remove(struct device *dev)
ide_hwif_t *hwif = dev_get_drvdata(dev); ide_hwif_t *hwif = dev_get_drvdata(dev);
_auide_hwif *ahwif = &auide_hwif; _auide_hwif *ahwif = &auide_hwif;
ide_unregister(hwif->index, 1, 1); ide_unregister(hwif->index, 0, 0);
iounmap((void *)ahwif->regbase); iounmap((void *)ahwif->regbase);
......
...@@ -85,7 +85,7 @@ delkin_cb_probe (struct pci_dev *dev, const struct pci_device_id *id) ...@@ -85,7 +85,7 @@ delkin_cb_probe (struct pci_dev *dev, const struct pci_device_id *id)
i = hwif->index; i = hwif->index;
if (hwif->present) if (hwif->present)
ide_unregister(i, 0, 1); ide_unregister(i, 0, 0);
else if (!hwif->hold) else if (!hwif->hold)
ide_init_port_data(hwif, i); ide_init_port_data(hwif, i);
...@@ -120,7 +120,7 @@ delkin_cb_remove (struct pci_dev *dev) ...@@ -120,7 +120,7 @@ delkin_cb_remove (struct pci_dev *dev)
ide_hwif_t *hwif = pci_get_drvdata(dev); ide_hwif_t *hwif = pci_get_drvdata(dev);
if (hwif) if (hwif)
ide_unregister(hwif->index, 1, 1); ide_unregister(hwif->index, 0, 0);
pci_disable_device(dev); pci_disable_device(dev);
} }
......
...@@ -736,7 +736,7 @@ static void __devexit scc_remove(struct pci_dev *dev) ...@@ -736,7 +736,7 @@ static void __devexit scc_remove(struct pci_dev *dev)
hwif->dmatable_cpu = NULL; hwif->dmatable_cpu = NULL;
} }
ide_unregister(hwif->index, 1, 1); ide_unregister(hwif->index, 0, 0);
hwif->chipset = ide_unknown; hwif->chipset = ide_unknown;
iounmap((void*)ports->dma); iounmap((void*)ports->dma);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment