diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-02-01 17:49:43 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-02-01 17:49:43 +0100 |
commit | 93809be8b140c101d27f00d0a622ebac90bc7a67 (patch) | |
tree | 2b5effc7e8d77e6f26a271838968cf793207767b /arch/x86/mm/ioremap.c | |
parent | 4a1485131a6038ba5382f407db48badc332672c4 (diff) | |
download | op-kernel-dev-93809be8b140c101d27f00d0a622ebac90bc7a67.zip op-kernel-dev-93809be8b140c101d27f00d0a622ebac90bc7a67.tar.gz |
x86: fixes for lookup_address args
Signedness mismatches in level argument.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm/ioremap.c')
-rw-r--r-- | arch/x86/mm/ioremap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c index a177d76..c004d94 100644 --- a/arch/x86/mm/ioremap.c +++ b/arch/x86/mm/ioremap.c @@ -75,7 +75,8 @@ static int ioremap_change_attr(unsigned long paddr, unsigned long size, { unsigned long vaddr = (unsigned long)__va(paddr); unsigned long nrpages = size >> PAGE_SHIFT; - int err, level; + unsigned int level; + int err; /* No change for pages after the last mapping */ if ((paddr + size - 1) >= (max_pfn_mapped << PAGE_SHIFT)) |