From: Bartlomiej Zolnierkiewicz Date: Sun, 7 Jun 2009 13:37:06 +0000 (+0200) Subject: ide: remove superfluous SELECT_MASK() call from ide_driveid_update() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f9952beeaa851f7f79a4dd895bfed3f3ff6deebc;p=mv-sheeva.git ide: remove superfluous SELECT_MASK() call from ide_driveid_update() We always call SELECT_MASK(drive, 0) after ide_dev_read_id() call so there is no need to do it again in the error path. Moreover with the combination of HPT36x controller and the drive on the quirk_drives[] list this can result in superfluous enable_irq() call which in turn will trigger WARN() in __enable_irq(). Acked-by: Sergei Shtylyov Signed-off-by: Bartlomiej Zolnierkiewicz --- diff --git a/drivers/ide/ide-iops.c b/drivers/ide/ide-iops.c index 06fe002116e..8dff623f9da 100644 --- a/drivers/ide/ide-iops.c +++ b/drivers/ide/ide-iops.c @@ -311,7 +311,6 @@ int ide_driveid_update(ide_drive_t *drive) return 1; out_err: - SELECT_MASK(drive, 0); if (rc == 2) printk(KERN_ERR "%s: %s: bad status\n", drive->name, __func__); kfree(id);