ide: clear drive IRQ after re-enabling local IRQs in ide_driveid_update()
Clear drive IRQ after re-enabling local IRQs in ide_driveid_update() to match try_to_identify(). Also remove superfluous local_irq_enable() call while at it. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
f323b80dce
commit
ff18b89bef
|
@ -341,10 +341,10 @@ int ide_driveid_update(ide_drive_t *drive)
|
|||
|
||||
local_irq_save(flags);
|
||||
tp_ops->input_data(drive, NULL, id, SECTOR_SIZE);
|
||||
(void)tp_ops->read_status(hwif); /* clear drive IRQ */
|
||||
local_irq_enable();
|
||||
local_irq_restore(flags);
|
||||
|
||||
(void)tp_ops->read_status(hwif); /* clear drive IRQ */
|
||||
|
||||
ide_fix_driveid(id);
|
||||
|
||||
SELECT_MASK(drive, 0);
|
||||
|
|
Loading…
Reference in New Issue