mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
scc_pata: remove ->init_setup
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
97f84baa03
commit
aaf707f061
1 changed files with 2 additions and 2 deletions
|
@ -698,7 +698,6 @@ static void __devinit init_hwif_scc(ide_hwif_t *hwif)
|
|||
#define DECLARE_SCC_DEV(name_str) \
|
||||
{ \
|
||||
.name = name_str, \
|
||||
.init_setup = init_setup_scc, \
|
||||
.init_iops = init_iops_scc, \
|
||||
.init_hwif = init_hwif_scc, \
|
||||
.host_flags = IDE_HFLAG_SINGLE | \
|
||||
|
@ -722,7 +721,8 @@ static ide_pci_device_t scc_chipsets[] __devinitdata = {
|
|||
static int __devinit scc_init_one(struct pci_dev *dev, const struct pci_device_id *id)
|
||||
{
|
||||
ide_pci_device_t *d = &scc_chipsets[id->driver_data];
|
||||
return d->init_setup(dev, d);
|
||||
|
||||
return init_setup_scc(dev, d);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue