[PATCH] 2.5.4 ftape virt_to_bus() fixes

From: Mikael Pettersson (mikpe@csd.uu.se)
Date: Tue Feb 12 2002 - 08:58:07 EST


This patch updates the ftape driver in 2.5.4 for the virt_to_bus() et
al changes. Since this is ISA-only code, I used the new isa_-prefixed
functions. Tested on a Seagate TST3200 TR-3 unit.

/Mikael

--- linux-2.5.4/drivers/char/ftape/lowlevel/fdc-io.c.~1~ Mon Feb 11 12:21:45 2002
+++ linux-2.5.4/drivers/char/ftape/lowlevel/fdc-io.c Mon Feb 11 16:55:18 2002
@@ -926,7 +926,7 @@
         disable_dma(fdc.dma);
         clear_dma_ff(fdc.dma);
         set_dma_mode(fdc.dma, mode);
- set_dma_addr(fdc.dma, virt_to_bus((void*)addr));
+ set_dma_addr(fdc.dma, isa_virt_to_bus((void*)addr));
         set_dma_count(fdc.dma, count);
         enable_dma(fdc.dma);
 }
@@ -945,7 +945,7 @@
         /* Program the DMA controller.
          */
         TRACE(ft_t_fdc_dma,
- "phys. addr. = %lx", virt_to_bus((void*) buff->ptr));
+ "phys. addr. = %lx", isa_virt_to_bus((void*) buff->ptr));
         save_flags(flags);
         cli(); /* could be called from ISR ! */
         fdc_setup_dma(DMA_MODE_WRITE, buff->ptr, FT_SECTORS_PER_SEGMENT * 4);
@@ -997,7 +997,7 @@
                 TRACE_ABORT(-EIO,
                             ft_t_bug, "bug: illegal operation parameter");
         }
- TRACE(ft_t_fdc_dma, "phys. addr. = %lx",virt_to_bus((void*)buff->ptr));
+ TRACE(ft_t_fdc_dma, "phys. addr. = %lx", isa_virt_to_bus((void*)buff->ptr));
         save_flags(flags);
         cli(); /* could be called from ISR ! */
         if (operation != FDC_VERIFY) {
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Fri Feb 15 2002 - 21:00:49 EST