From: Bartlomiej Zolnierkiewicz Date: Wed, 23 Jul 2008 17:55:53 +0000 (+0200) Subject: ide: use ->tf_load in actual_try_to_identify() X-Git-Tag: v2.6.27-rc1~854^2~43 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=4e65837b293f3ee6399006e94120d61430f72f26;p=safe%2Fjmp%2Flinux-2.6 ide: use ->tf_load in actual_try_to_identify() Convert actual_try_to_identify() to use ->tf_load instead of ->OUTB. There should be no functional changes caused by this patch. Signed-off-by: Bartlomiej Zolnierkiewicz --- diff --git a/drivers/ide/ide-probe.c b/drivers/ide/ide-probe.c index 475bd72..9704643 100644 --- a/drivers/ide/ide-probe.c +++ b/drivers/ide/ide-probe.c @@ -290,9 +290,15 @@ static int actual_try_to_identify (ide_drive_t *drive, u8 cmd) /* set features register for atapi * identify command to be sure of reply */ - if ((cmd == WIN_PIDENTIFY)) - /* disable dma & overlap */ - hwif->OUTB(0, io_ports->feature_addr); + if (cmd == WIN_PIDENTIFY) { + ide_task_t task; + + memset(&task, 0, sizeof(task)); + /* disable DMA & overlap */ + task.tf_flags = IDE_TFLAG_OUT_FEATURE; + + drive->hwif->tf_load(drive, &task); + } /* ask drive for ID */ hwif->exec_command(hwif, cmd);