projects
/
wrapfs-5.3.y.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
13fc4d0
)
x86: ioremap of 64-bit resource on 32-bit kernel fix
author
Ingo Molnar
<mingo@elte.hu>
Tue, 25 Mar 2008 06:31:17 +0000
(07:31 +0100)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Wed, 6 Aug 2008 17:10:55 +0000
(10:10 -0700)
commit
756a6c68556600aec9460346332884d891d5beb4
upstream
x86: ioremap of 64-bit resource on 32-bit kernel fix
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Cc: Chuck Ebbert <cebbert@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
arch/x86/mm/ioremap.c
patch
|
blob
|
history
diff --git
a/arch/x86/mm/ioremap.c
b/arch/x86/mm/ioremap.c
index 794895c6dcc99428b2105a9f4062b109b90f5215..f96b2e4d5f2b2a777b57a943c9d04067aec1d9da 100644
(file)
--- a/
arch/x86/mm/ioremap.c
+++ b/
arch/x86/mm/ioremap.c
@@
-39,7
+39,7
@@
EXPORT_SYMBOL(__phys_addr);
int page_is_ram(unsigned long pagenr)
{
-
unsigned long
addr, end;
+
resource_size_t
addr, end;
int i;
/*
@@
-109,7
+109,8
@@
static int ioremap_change_attr(unsigned long vaddr, unsigned long size,
static void __iomem *__ioremap(resource_size_t phys_addr, unsigned long size,
enum ioremap_mode mode)
{
- unsigned long pfn, offset, last_addr, vaddr;
+ unsigned long pfn, offset, vaddr;
+ resource_size_t last_addr;
struct vm_struct *area;
pgprot_t prot;