Skip to content

Commit

Permalink
ide: make ide_unregister() take 'ide_hwif_t *' as an argument (take 2)
Browse files Browse the repository at this point in the history
* Make ide_unregister() take 'ide_hwif_t *hwif' instead of 'unsigned int
  index' (hwif->index) as an argument and update all users accordingly.

While at it:

* Remove unnecessary checks for hwif != NULL from ide-pnp.c::idepnp_remove()
  and delkin_cb.c::delkin_cb_remove().

* Remove needless hwif->chipset assignment from scc_pata.c::scc_remove().

v2:
* Fixup ide_unregister() documentation.

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
  • Loading branch information
Bartlomiej Zolnierkiewicz committed Apr 27, 2008
1 parent bf64b7a commit 387750c
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 20 deletions.
2 changes: 1 addition & 1 deletion drivers/ide/arm/rapide.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ static void __devexit rapide_remove(struct expansion_card *ec)

ecard_set_drvdata(ec, NULL);

ide_unregister(hwif->index);
ide_unregister(hwif);

ecard_release_resources(ec);
}
Expand Down
5 changes: 1 addition & 4 deletions drivers/ide/ide-pnp.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,7 @@ static void idepnp_remove(struct pnp_dev *dev)
{
ide_hwif_t *hwif = pnp_get_drvdata(dev);

if (hwif)
ide_unregister(hwif->index);
else
printk(KERN_ERR "idepnp: Unable to remove device, please report.\n");
ide_unregister(hwif);

release_region(pnp_port_start(dev, 1), 1);
release_region(pnp_port_start(dev, 0), 8);
Expand Down
11 changes: 4 additions & 7 deletions drivers/ide/ide.c
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ EXPORT_SYMBOL_GPL(ide_port_unregister_devices);

/**
* ide_unregister - free an IDE interface
* @index: index of interface (will change soon to a pointer)
* @hwif: IDE interface
*
* Perform the final unregister of an IDE interface. At the moment
* we don't refcount interfaces so this will also get split up.
Expand All @@ -307,19 +307,16 @@ EXPORT_SYMBOL_GPL(ide_port_unregister_devices);
* This is raving bonkers.
*/

void ide_unregister(unsigned int index)
void ide_unregister(ide_hwif_t *hwif)
{
ide_hwif_t *hwif, *g;
ide_hwif_t *g;
ide_hwgroup_t *hwgroup;
int irq_count = 0;

BUG_ON(index >= MAX_HWIFS);

BUG_ON(in_interrupt());
BUG_ON(irqs_disabled());
mutex_lock(&ide_cfg_mtx);
spin_lock_irq(&ide_lock);
hwif = &ide_hwifs[index];
if (!hwif->present)
goto abort;
__ide_port_unregister_devices(hwif);
Expand Down Expand Up @@ -360,7 +357,7 @@ void ide_unregister(unsigned int index)
ide_release_dma_engine(hwif);

/* restore hwif data to pristine status */
ide_init_port_data(hwif, index);
ide_init_port_data(hwif, hwif->index);

abort:
spin_unlock_irq(&ide_lock);
Expand Down
2 changes: 1 addition & 1 deletion drivers/ide/legacy/ide-cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ void ide_release(struct pcmcia_device *link)
if (info->ndev) {
/* FIXME: if this fails we need to queue the cleanup somehow
-- need to investigate the required PCMCIA magic */
ide_unregister(hwif->index);
ide_unregister(hwif);
}
info->ndev = 0;

Expand Down
2 changes: 1 addition & 1 deletion drivers/ide/legacy/ide_platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ static int __devexit plat_ide_remove(struct platform_device *pdev)
{
ide_hwif_t *hwif = pdev->dev.driver_data;

ide_unregister(hwif->index);
ide_unregister(hwif);

return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/ide/mips/au1xxx-ide.c
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ static int au_ide_remove(struct device *dev)
ide_hwif_t *hwif = dev_get_drvdata(dev);
_auide_hwif *ahwif = &auide_hwif;

ide_unregister(hwif->index);
ide_unregister(hwif);

iounmap((void *)ahwif->regbase);

Expand Down
3 changes: 1 addition & 2 deletions drivers/ide/pci/delkin_cb.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,7 @@ delkin_cb_remove (struct pci_dev *dev)
{
ide_hwif_t *hwif = pci_get_drvdata(dev);

if (hwif)
ide_unregister(hwif->index);
ide_unregister(hwif);

pci_release_regions(dev);
pci_disable_device(dev);
Expand Down
3 changes: 1 addition & 2 deletions drivers/ide/pci/scc_pata.c
Original file line number Diff line number Diff line change
Expand Up @@ -763,9 +763,8 @@ static void __devexit scc_remove(struct pci_dev *dev)
hwif->dmatable_cpu = NULL;
}

ide_unregister(hwif->index);
ide_unregister(hwif);

hwif->chipset = ide_unknown;
iounmap((void*)ports->dma);
iounmap((void*)ports->ctl);
pci_release_selected_regions(dev, (1 << 2) - 1);
Expand Down
2 changes: 1 addition & 1 deletion include/linux/ide.h
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,7 @@ static inline void ide_acpi_set_state(ide_hwif_t *hwif, int on) {}
#endif

void ide_remove_port_from_hwgroup(ide_hwif_t *);
void ide_unregister(unsigned int);
void ide_unregister(ide_hwif_t *);

void ide_register_region(struct gendisk *);
void ide_unregister_region(struct gendisk *);
Expand Down

0 comments on commit 387750c

Please sign in to comment.