ide: drop 'name' parameter from ->init_chipset method

There should be no functional changes caused by this patch.

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
Bartlomiej Zolnierkiewicz
2008-07-24 22:53:33 +02:00
parent ced3ec8aa7
commit a326b02b0c
19 changed files with 39 additions and 48 deletions

View File

@ -515,7 +515,7 @@ static int do_ide_setup_pci_device(struct pci_dev *dev,
* space, place chipset into init-mode, and/or preserve
* an interrupt if the card is not native ide support.
*/
ret = d->init_chipset ? d->init_chipset(dev, d->name) : 0;
ret = d->init_chipset ? d->init_chipset(dev) : 0;
if (ret < 0)
goto out;