mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 16:41:58 +00:00
ide: use ->ata_input_data in ide_driveid_update()
Use ->ata_input_data method instead of calling ata_input_data() directly. Currently it matters only for (broken) ide-cris host driver but it may change in the future. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
430c5d26ec
commit
7e77718579
@ -658,7 +658,7 @@ int ide_driveid_update(ide_drive_t *drive)
|
|||||||
local_irq_restore(flags);
|
local_irq_restore(flags);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
ata_input_data(drive, id, SECTOR_WORDS);
|
hwif->ata_input_data(drive, id, SECTOR_WORDS);
|
||||||
(void)ide_read_status(drive); /* clear drive IRQ */
|
(void)ide_read_status(drive); /* clear drive IRQ */
|
||||||
local_irq_enable();
|
local_irq_enable();
|
||||||
local_irq_restore(flags);
|
local_irq_restore(flags);
|
||||||
|
Loading…
Reference in New Issue
Block a user