Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
756a6c68
Commit
756a6c68
authored
Mar 25, 2008
by
Ingo Molnar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86: ioremap of 64-bit resource on 32-bit kernel fix
Signed-off-by:
Ingo Molnar
<
mingo@elte.hu
>
parent
5af5573e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
arch/x86/mm/ioremap.c
arch/x86/mm/ioremap.c
+3
-2
No files found.
arch/x86/mm/ioremap.c
View file @
756a6c68
...
...
@@ -47,7 +47,7 @@ static inline int phys_addr_valid(unsigned long addr)
int
page_is_ram
(
unsigned
long
pagenr
)
{
unsigned
long
addr
,
end
;
resource_size_t
addr
,
end
;
int
i
;
/*
...
...
@@ -120,7 +120,8 @@ int ioremap_change_attr(unsigned long vaddr, unsigned long size,
static
void
__iomem
*
__ioremap
(
resource_size_t
phys_addr
,
unsigned
long
size
,
unsigned
long
prot_val
)
{
unsigned
long
pfn
,
offset
,
last_addr
,
vaddr
;
unsigned
long
pfn
,
offset
,
vaddr
;
resource_size_t
last_addr
;
struct
vm_struct
*
area
;
unsigned
long
new_prot_val
;
pgprot_t
prot
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment