summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2009-10-13 22:23:40 +0200
committerThomas Gleixner <tglx@linutronix.de>2009-10-13 22:23:40 +0200
commitbfb35e3c6436ac06659029ca67a5940ca08efa20 (patch)
treed68f9fcb4de767c76d03732b5b29ae6414692d29
parentd99f9884403747e8668442b9ce61b28a9d6bcd4a (diff)
downloadlwn-bfb35e3c6436ac06659029ca67a5940ca08efa20.tar.gz
lwn-bfb35e3c6436ac06659029ca67a5940ca08efa20.zip
x86: highmem: Restore the not so leftover function prototype
commit e31b799 (x86: highmem: Remove leftover function prototypes) removed kmap_atomic_prot_pfn() which is not a leftover, but should have been left where it was. Restore it. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--arch/x86/include/asm/highmem.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/include/asm/highmem.h b/arch/x86/include/asm/highmem.h
index ea04ada56e7a..433ae1f02e95 100644
--- a/arch/x86/include/asm/highmem.h
+++ b/arch/x86/include/asm/highmem.h
@@ -69,6 +69,8 @@ void __kunmap_atomic(void *kvaddr, enum km_type type);
void *__kmap_atomic_pfn(unsigned long pfn, enum km_type type);
struct page *__kmap_atomic_to_page(void *ptr);
+void *kmap_atomic_prot_pfn(unsigned long pfn, enum km_type type, pgprot_t prot);
+
#ifndef CONFIG_PARAVIRT
#define kmap_atomic_pte(page, type) kmap_atomic(page, type)
#define kmap_atomic_pte_direct(page, type) kmap_atomic_direct(page, type)