projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
93ea927
)
arch/tile: remove useless set_fixmap_nocache() macro
author
Chris Metcalf
<cmetcalf@tilera.com>
Wed, 15 Jun 2011 14:35:38 +0000
(10:35 -0400)
committer
Chris Metcalf
<cmetcalf@tilera.com>
Wed, 15 Jun 2011 14:35:38 +0000
(10:35 -0400)
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>
arch/tile/include/asm/fixmap.h
patch
|
blob
|
blame
|
history
diff --git
a/arch/tile/include/asm/fixmap.h
b/arch/tile/include/asm/fixmap.h
index 51537ff9265acb240c08e7672f5b1d0a18431621..c66f7933beaa0952c31601c17559a7eaa83206c2 100644
(file)
--- 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))