diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2009-02-04 19:05:25 -0500 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2009-03-24 01:17:43 -0400 |
commit | 15ee04c288d8d612d93a14decc968e817d21e789 (patch) | |
tree | 685c67ae4d6b19c1be73f27a528451f171440ff0 /arch/m68k | |
parent | 606333d64e06db9ae14b5a025380bc5954b1a6c4 (diff) |
m68k: Use dma_addr_t for scatterlist.dma_address
dma_addr_t (as was used by m68knommu) is more correct than u32.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/include/asm/scatterlist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/include/asm/scatterlist.h b/arch/m68k/include/asm/scatterlist.h index d3a7a0edfeca..e27ad902b1cf 100644 --- a/arch/m68k/include/asm/scatterlist.h +++ b/arch/m68k/include/asm/scatterlist.h | |||
@@ -11,7 +11,7 @@ struct scatterlist { | |||
11 | unsigned int offset; | 11 | unsigned int offset; |
12 | unsigned int length; | 12 | unsigned int length; |
13 | 13 | ||
14 | __u32 dma_address; /* A place to hang host-specific addresses at. */ | 14 | dma_addr_t dma_address; /* A place to hang host-specific addresses at. */ |
15 | }; | 15 | }; |
16 | 16 | ||
17 | /* This is bogus and should go away. */ | 17 | /* This is bogus and should go away. */ |