From: Bartlomiej Zolnierkiewicz Date: Tue, 15 Jul 2008 19:21:50 +0000 (+0200) Subject: ide: use ->OUTBSYNC in ide_set_irq() X-Git-Tag: v2.6.27-rc1~1078^2~45 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0fd04dcc2ebb6ec9088c24b368b0ce1f42a98ef5;p=linux-2.6 ide: use ->OUTBSYNC in ide_set_irq() Signed-off-by: Bartlomiej Zolnierkiewicz --- diff --git a/include/linux/ide.h b/include/linux/ide.h index 1c34314696..4d1c9714f1 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h @@ -1340,7 +1340,8 @@ static inline void ide_set_irq(ide_drive_t *drive, int on) { ide_hwif_t *hwif = drive->hwif; - hwif->OUTB(drive->ctl | (on ? 0 : 2), hwif->io_ports.ctl_addr); + hwif->OUTBSYNC(hwif, drive->ctl | (on ? 0 : 2), + hwif->io_ports.ctl_addr); } static inline u8 ide_read_status(ide_drive_t *drive)