diff options
author | Suresh Siddha <suresh.b.siddha@intel.com> | 2009-04-09 14:26:52 -0700 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-04-10 13:55:48 +0200 |
commit | 0c3c8a18361a636069f5a5d9d0d0f9c2124e6b94 (patch) | |
tree | f981571c3778083924be8de03445fc4c9ee5624b /arch/x86/include/asm/pat.h | |
parent | b6ff32d9aaeeeecf98f9a852d715569183585312 (diff) | |
download | op-kernel-dev-0c3c8a18361a636069f5a5d9d0d0f9c2124e6b94.zip op-kernel-dev-0c3c8a18361a636069f5a5d9d0d0f9c2124e6b94.tar.gz |
x86, PAT: Remove duplicate memtype reserve in devmem mmap
/dev/mem mmap code was doing memtype reserve/free for a while now.
Recently we added memtype tracking in remap_pfn_range, and /dev/mem mmap
uses it indirectly. So, we don't need seperate tracking in /dev/mem code
any more. That means another ~100 lines of code removed :-).
Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
LKML-Reference: <20090409212709.085210000@intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm/pat.h')
-rw-r--r-- | arch/x86/include/asm/pat.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/x86/include/asm/pat.h b/arch/x86/include/asm/pat.h index 2cd07b9..7af14e5 100644 --- a/arch/x86/include/asm/pat.h +++ b/arch/x86/include/asm/pat.h @@ -18,9 +18,5 @@ extern int free_memtype(u64 start, u64 end); extern int kernel_map_sync_memtype(u64 base, unsigned long size, unsigned long flag); -extern void map_devmem(unsigned long pfn, unsigned long size, - struct pgprot vma_prot); -extern void unmap_devmem(unsigned long pfn, unsigned long size, - struct pgprot vma_prot); #endif /* _ASM_X86_PAT_H */ |