Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cf77249e authored by Bartlomiej Zolnierkiewicz's avatar Bartlomiej Zolnierkiewicz
Browse files

ide-disk: fix __ide_do_rw_disk() to use ->OUTBSYNC



Fix __ide_do_rw_disk() to use ->OUTBSYNC instead of ->OUTB
(needed for pmac and scc_pata host drivers).

Acked-by: default avatarSergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent 7c0e2666
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -247,8 +247,7 @@ static ide_startstop_t __ide_do_rw_disk(ide_drive_t *drive, struct request *rq,
			command = lba48 ? WIN_WRITE_EXT : WIN_WRITE;
		}

		/* FIXME: ->OUTBSYNC ? */
		hwif->OUTB(command, IDE_COMMAND_REG);
		hwif->OUTBSYNC(drive, command, IDE_COMMAND_REG);

		return pre_task_out_intr(drive, rq);
	}