Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax
In directory usw-pr-cvs1:/tmp/cvs-serv30876
Modified Files:
types.h
Log Message:
Added dma64_addr_t type (some 2.5.x SCSI code needs it, even though it has
no meaning on VAX).
Index: types.h
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/types.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- types.h 18 Jul 2002 23:45:21 -0000 1.4
+++ types.h 29 Sep 2002 19:36:51 -0000 1.5
@@ -43,9 +43,12 @@
#define BITS_PER_LONG 32
-/* DMA addresses come in generic and 64-bit flavours. */
+/* DMA addresses come in generic and 64-bit flavours (although I can't
+ see 64-bit DMA having any meaning on VAX - KPH). */
typedef u32 dma_addr_t;
+
+typedef u64 dma64_addr_t;
#endif /* __KERNEL__ */
|