mirror of https://gitee.com/openkylin/linux.git
ide-scsi: remove superfluous BUG_ON() from idescsi_transfer_pc()
ide_set_handler() bugs on ->handler == NULL so no need to do it in idescsi_transfer_pc(). There should be no functional changes caused by this patch. Cc: Borislav Petkov <petkovbb@gmail.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
3e52fb4d1f
commit
c8c5112980
|
@ -469,7 +469,7 @@ static ide_startstop_t idescsi_transfer_pc(ide_drive_t *drive)
|
|||
"issuing a packet command\n");
|
||||
return ide_do_reset (drive);
|
||||
}
|
||||
BUG_ON(HWGROUP(drive)->handler != NULL);
|
||||
|
||||
/* Set the interrupt routine */
|
||||
ide_set_handler(drive, &idescsi_pc_intr, get_timeout(pc), idescsi_expiry);
|
||||
|
||||
|
|
Loading…
Reference in New Issue