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-taskfile.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-taskfile.c')
| -rw-r--r-- | drivers/ide/ide-taskfile.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/ide-taskfile.c b/drivers/ide/ide-taskfile.c index dba68db629b..47f13cd1103 100644 --- a/drivers/ide/ide-taskfile.c +++ b/drivers/ide/ide-taskfile.c @@ -80,7 +80,7 @@ ide_startstop_t do_rw_taskfile(ide_drive_t *drive, struct ide_cmd *orig_cmd)  	if ((cmd->tf_flags & IDE_TFLAG_DMA_PIO_FALLBACK) == 0) {  		ide_tf_dump(drive->name, tf); -		tp_ops->set_irq(hwif, 1); +		tp_ops->write_devctl(hwif, ATA_DEVCTL_OBS);  		SELECT_MASK(drive, 0);  		tp_ops->tf_load(drive, cmd);  	}  |