diff options
author | Marin Mitov <mitov@issp.bas.bg> | 2010-05-31 06:03:04 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-08-05 16:53:33 -0400 |
commit | ed1d218c95c6846416ddb39085b20a5b3c0872e4 (patch) | |
tree | c5fde1cb1169af6c26f8445708484778b79c1cbb /drivers/base | |
parent | 94f17cd7887ca681ea88fda1fd9bf65c0ca161f0 (diff) |
Driver core: internal struct dma_coherent_mem, change type of a member.
struct dma_coherent_mem in drivers/base/dma-coherent.c
has member 'device_base' that is of type u32,
but is assigned value of type dma_addr_t, which may be
64 bits for x86_64. Change the type to dma_addr_t.
Signed-off-by: Marin Mitov <mitov@issp.bas.bg>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/dma-coherent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/dma-coherent.c b/drivers/base/dma-coherent.c index d4d8ce53886a..f369e2795985 100644 --- a/drivers/base/dma-coherent.c +++ b/drivers/base/dma-coherent.c | |||
@@ -8,7 +8,7 @@ | |||
8 | 8 | ||
9 | struct dma_coherent_mem { | 9 | struct dma_coherent_mem { |
10 | void *virt_base; | 10 | void *virt_base; |
11 | u32 device_base; | 11 | dma_addr_t device_base; |
12 | int size; | 12 | int size; |
13 | int flags; | 13 | int flags; |
14 | unsigned long *bitmap; | 14 | unsigned long *bitmap; |