diff options
| author | Sergei Shtylyov <sshtylyov@ru.mvista.com> | 2009-03-31 20:15:30 +0200 | 
|---|---|---|
| committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-31 20:15:30 +0200 | 
| commit | ecf3a31d2a08a419bdf919456f1724f5b72bde2c (patch) | |
| tree | 11a5b4685425541fa4bb267ac6f897cb1c38ba41 /drivers/ide/ide-io.c | |
| parent | 4d74c3fcf2b90487eacec511bc8c07177711c81c (diff) | |
| download | olio-linux-3.10-ecf3a31d2a08a419bdf919456f1724f5b72bde2c.tar.xz olio-linux-3.10-ecf3a31d2a08a419bdf919456f1724f5b72bde2c.zip  | |
ide: turn set_irq() method into write_devctl() method
Turn set_irq() method with its software reset hack into write_devctl() method
(for just writing a value into the device control register) at last...
Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-io.c')
| -rw-r--r-- | drivers/ide/ide-io.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/ide/ide-io.c b/drivers/ide/ide-io.c index 3c52317d852..5b57905a7d7 100644 --- a/drivers/ide/ide-io.c +++ b/drivers/ide/ide-io.c @@ -494,7 +494,9 @@ repeat:  			 * quirk_list may not like intr setups/cleanups  			 */  			if (prev_port && prev_port->cur_dev->quirk_list == 0) -				prev_port->tp_ops->set_irq(prev_port, 0); +				prev_port->tp_ops->write_devctl(prev_port, +								ATA_NIEN | +								ATA_DEVCTL_OBS);  			hwif->host->cur_port = hwif;  		}  |