diff options
author | KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> | 2009-01-06 17:39:43 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-06 18:59:04 -0500 |
commit | 2bc7273b0e3a509fb598abfc5b9fe50158b830d2 (patch) | |
tree | e8cd456eb0cdc537f195e93fc0090b970dec7308 /mm | |
parent | feb166948876e2ff8f70b2da273b2a8e86957578 (diff) |
mm: make maddr __iomem
sparse output following warnings.
mm/memory.c:2936:8: warning: incorrect type in assignment (different address spaces)
mm/memory.c:2936:8: expected void *maddr
mm/memory.c:2936:8: got void [noderef] <asn:2>
cleanup here.
Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/memory.c b/mm/memory.c index 1a83fe5339a9..89339c61f8e5 100644 --- a/mm/memory.c +++ b/mm/memory.c | |||
@@ -2966,7 +2966,7 @@ int generic_access_phys(struct vm_area_struct *vma, unsigned long addr, | |||
2966 | { | 2966 | { |
2967 | resource_size_t phys_addr; | 2967 | resource_size_t phys_addr; |
2968 | unsigned long prot = 0; | 2968 | unsigned long prot = 0; |
2969 | void *maddr; | 2969 | void __iomem *maddr; |
2970 | int offset = addr & (PAGE_SIZE-1); | 2970 | int offset = addr & (PAGE_SIZE-1); |
2971 | 2971 | ||
2972 | if (follow_phys(vma, addr, write, &prot, &phys_addr)) | 2972 | if (follow_phys(vma, addr, write, &prot, &phys_addr)) |