diff options
author | venkatesh.pallipadi@intel.com <venkatesh.pallipadi@intel.com> | 2008-03-18 20:00:16 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:41:19 -0400 |
commit | 3a96ce8cac808fbed5493adc5c605bced28e2ca1 (patch) | |
tree | a6ab4f019e6cd228823fd28be3b75a0a8bf84690 /include/asm-x86/io.h | |
parent | 55c626820a82b25d7fceca702e9422037ae80626 (diff) |
x86: PAT make ioremap_change_attr non-static
Make ioremap_change_attr() non-static and use prot_val in place of ioremap_mode.
This interface is used in subsequent PAT patches.
Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/io.h')
-rw-r--r-- | include/asm-x86/io.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-x86/io.h b/include/asm-x86/io.h index 5a58b176dd61..6fa150fa68fa 100644 --- a/include/asm-x86/io.h +++ b/include/asm-x86/io.h | |||
@@ -3,3 +3,6 @@ | |||
3 | #else | 3 | #else |
4 | # include "io_64.h" | 4 | # include "io_64.h" |
5 | #endif | 5 | #endif |
6 | extern int ioremap_change_attr(unsigned long vaddr, unsigned long size, | ||
7 | unsigned long prot_val); | ||
8 | |||