lkml.org 
[lkml]   [2002]   [Feb]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] 2.5.4 ftape virt_to_bus() fixes
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/
\
 
 \ /
  Last update: 2005-03-22 13:24    [W:0.037 / U:0.412 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site