ide: ->port_init_devs -> ->init_dev
[firefly-linux-kernel-4.4.55.git] / drivers / ide / legacy / ide-4drives.c
index 5cd6ce537eea2f0b964301593b1e8d62f92cda7c..89c8ff0a4d085f81e89bffba2fc3ba12a89f97c2 100644 (file)
@@ -11,16 +11,14 @@ static int probe_4drives;
 module_param_named(probe, probe_4drives, bool, 0);
 MODULE_PARM_DESC(probe, "probe for generic IDE chipset with 4 drives/port");
 
-static void ide_4drives_port_init_devs(ide_hwif_t *hwif)
+static void ide_4drives_init_dev(ide_drive_t *drive)
 {
-       if (hwif->channel) {
-               hwif->drives[0].select.all ^= 0x20;
-               hwif->drives[1].select.all ^= 0x20;
-       }
+       if (drive->hwif->channel)
+               drive->select.all ^= 0x20;
 }
 
 static const struct ide_port_ops ide_4drives_port_ops = {
-       .port_init_devs         = ide_4drives_port_init_devs,
+       .init_dev               = ide_4drives_init_dev,
 };
 
 static const struct ide_port_info ide_4drives_port_info = {