aboutsummaryrefslogtreecommitdiffstats
path: root/arch/tile/include/asm/fixmap.h
diff options
context:
space:
mode:
authorChris Metcalf <cmetcalf@tilera.com>2011-06-15 10:35:38 -0400
committerChris Metcalf <cmetcalf@tilera.com>2011-06-15 10:35:38 -0400
commitcf8e98d15361f8c594da00a3f7a500787fc1a426 (patch)
treeec25cbd7e504b8264061efa743966f8a558285a6 /arch/tile/include/asm/fixmap.h
parentMerge tag 'v3.0-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6 into for-linus (diff)
downloadlinux-dev-cf8e98d15361f8c594da00a3f7a500787fc1a426.tar.xz
linux-dev-cf8e98d15361f8c594da00a3f7a500787fc1a426.zip
arch/tile: remove useless set_fixmap_nocache() macro
TILE doesn't support PAGE_KERNEL_NOCACHE so the macro isn't useful; it's a copy-and-paste from the first version of this header in 2007. Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile/include/asm/fixmap.h')
-rw-r--r--arch/tile/include/asm/fixmap.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/tile/include/asm/fixmap.h b/arch/tile/include/asm/fixmap.h
index 51537ff9265a..c66f7933beaa 100644
--- a/arch/tile/include/asm/fixmap.h
+++ b/arch/tile/include/asm/fixmap.h
@@ -75,12 +75,6 @@ extern void __set_fixmap(enum fixed_addresses idx,
#define set_fixmap(idx, phys) \
__set_fixmap(idx, phys, PAGE_KERNEL)
-/*
- * Some hardware wants to get fixmapped without caching.
- */
-#define set_fixmap_nocache(idx, phys) \
- __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
-
#define clear_fixmap(idx) \
__set_fixmap(idx, 0, __pgprot(0))