ide: add IDE_DFLAG_NIEN_QUIRK device flag
Add IDE_DFLAG_NIEN_QUIRK device flag and use it instead of drive->quirk_list. There should be no functional changes caused by this patch. Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
@ -488,11 +488,15 @@ repeat:
|
||||
|
||||
if ((hwif->host->host_flags & IDE_HFLAG_SERIALIZE) &&
|
||||
hwif != prev_port) {
|
||||
ide_drive_t *cur_dev =
|
||||
prev_port ? prev_port->cur_dev : NULL;
|
||||
|
||||
/*
|
||||
* set nIEN for previous port, drives in the
|
||||
* quirk_list may not like intr setups/cleanups
|
||||
* quirk list may not like intr setups/cleanups
|
||||
*/
|
||||
if (prev_port && prev_port->cur_dev->quirk_list == 0)
|
||||
if (cur_dev &&
|
||||
(cur_dev->dev_flags & IDE_DFLAG_NIEN_QUIRK) == 0)
|
||||
prev_port->tp_ops->write_devctl(prev_port,
|
||||
ATA_NIEN |
|
||||
ATA_DEVCTL_OBS);
|
||||
|
Reference in New Issue
Block a user