PATCH: enable the hwif->raw_taskfile hook
From: Alan Cox <hidden>
Date: 2004-08-15 15:11:08
Also in:
lkml
From: Alan Cox <hidden>
Date: 2004-08-15 15:11:08
Also in:
lkml
diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla-2.6.8-rc3/drivers/ide/ide-taskfile.c linux-2.6.8-rc3/drivers/ide/ide-taskfile.c
--- linux.vanilla-2.6.8-rc3/drivers/ide/ide-taskfile.c 2004-08-09 15:51:00.000000000 +0100
+++ linux-2.6.8-rc3/drivers/ide/ide-taskfile.c 2004-08-12 16:43:49.000000000 +0100@@ -604,7 +604,11 @@ int ide_raw_taskfile (ide_drive_t *drive, ide_task_t *args, u8 *buf) { - return ide_diag_taskfile(drive, args, 0, buf); + ide_hwif_t *hwif = HWIF(drive); + if(hwif->raw_taskfile) + return hwif->raw_taskfile(drive, args, buf); + else + return ide_diag_taskfile(drive, args, 0, buf); } EXPORT_SYMBOL(ide_raw_taskfile);
Signed-off-by: Alan Cox <redacted> -- Xenophobia: fear of paravirtualization