diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-08 15:27:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-08 15:27:44 -0400 |
commit | b20dcab9d4589ef9918a13c888c5493945adfc13 (patch) | |
tree | d18333ef4db91e274ebcf989cc8cdc4ac5ab9392 /arch/arm/include | |
parent | ed81e780a7dd5698a986f246fad6a1d8d0b6f9ce (diff) | |
parent | e6b80757700a11315dd81b161f8d86099214c185 (diff) |
Merge tag 'llvmlinux-for-v3.16' of git://git.linuxfoundation.org/llvmlinux/kernel
Pull LLVM patches from Behan Webster:
"Next set of patches to support compiling the kernel with clang.
They've been soaking in linux-next since the last merge window.
More still in the works for the next merge window..."
* tag 'llvmlinux-for-v3.16' of git://git.linuxfoundation.org/llvmlinux/kernel:
arm, unwind, LLVMLinux: Enable clang to be used for unwinding the stack
ARM: LLVMLinux: Change "extern inline" to "static inline" in glue-cache.h
all: LLVMLinux: Change DWARF flag to support gcc and clang
net: netfilter: LLVMLinux: vlais-netfilter
crypto: LLVMLinux: aligned-attribute.patch
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/glue-cache.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/arch/arm/include/asm/glue-cache.h b/arch/arm/include/asm/glue-cache.h index c81adc08b3fb..a3c24cd5b7c8 100644 --- a/arch/arm/include/asm/glue-cache.h +++ b/arch/arm/include/asm/glue-cache.h | |||
@@ -130,22 +130,22 @@ | |||
130 | #endif | 130 | #endif |
131 | 131 | ||
132 | #ifndef __ASSEMBLER__ | 132 | #ifndef __ASSEMBLER__ |
133 | extern inline void nop_flush_icache_all(void) { } | 133 | static inline void nop_flush_icache_all(void) { } |
134 | extern inline void nop_flush_kern_cache_all(void) { } | 134 | static inline void nop_flush_kern_cache_all(void) { } |
135 | extern inline void nop_flush_kern_cache_louis(void) { } | 135 | static inline void nop_flush_kern_cache_louis(void) { } |
136 | extern inline void nop_flush_user_cache_all(void) { } | 136 | static inline void nop_flush_user_cache_all(void) { } |
137 | extern inline void nop_flush_user_cache_range(unsigned long a, | 137 | static inline void nop_flush_user_cache_range(unsigned long a, |
138 | unsigned long b, unsigned int c) { } | 138 | unsigned long b, unsigned int c) { } |
139 | 139 | ||
140 | extern inline void nop_coherent_kern_range(unsigned long a, unsigned long b) { } | 140 | static inline void nop_coherent_kern_range(unsigned long a, unsigned long b) { } |
141 | extern inline int nop_coherent_user_range(unsigned long a, | 141 | static inline int nop_coherent_user_range(unsigned long a, |
142 | unsigned long b) { return 0; } | 142 | unsigned long b) { return 0; } |
143 | extern inline void nop_flush_kern_dcache_area(void *a, size_t s) { } | 143 | static inline void nop_flush_kern_dcache_area(void *a, size_t s) { } |
144 | 144 | ||
145 | extern inline void nop_dma_flush_range(const void *a, const void *b) { } | 145 | static inline void nop_dma_flush_range(const void *a, const void *b) { } |
146 | 146 | ||
147 | extern inline void nop_dma_map_area(const void *s, size_t l, int f) { } | 147 | static inline void nop_dma_map_area(const void *s, size_t l, int f) { } |
148 | extern inline void nop_dma_unmap_area(const void *s, size_t l, int f) { } | 148 | static inline void nop_dma_unmap_area(const void *s, size_t l, int f) { } |
149 | #endif | 149 | #endif |
150 | 150 | ||
151 | #ifndef MULTI_CACHE | 151 | #ifndef MULTI_CACHE |