diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-09-12 18:49:24 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-12 10:50:56 -0700 |
commit | 9c0aa0f9a16557a3dd9b7b0d39bc67ddf1fa0b32 (patch) | |
tree | 7f56da5c81c9e8751a0c85ba7e2495e0616971a8 /include/asm-x86_64/fixmap.h | |
parent | 47e5701e37cf10948c3f2952870d9f18b6e84965 (diff) | |
download | kernel_samsung_smdk4412-9c0aa0f9a16557a3dd9b7b0d39bc67ddf1fa0b32.zip kernel_samsung_smdk4412-9c0aa0f9a16557a3dd9b7b0d39bc67ddf1fa0b32.tar.gz kernel_samsung_smdk4412-9c0aa0f9a16557a3dd9b7b0d39bc67ddf1fa0b32.tar.bz2 |
[PATCH] Replace extern inline with static inline in asm-x86_64/*
They should be identical in the kernel now, but this
makes it consistent with other code.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-x86_64/fixmap.h')
-rw-r--r-- | include/asm-x86_64/fixmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86_64/fixmap.h b/include/asm-x86_64/fixmap.h index cf8b16c..a582cfc 100644 --- a/include/asm-x86_64/fixmap.h +++ b/include/asm-x86_64/fixmap.h @@ -76,7 +76,7 @@ extern void __this_fixmap_does_not_exist(void); * directly without translation, we catch the bug with a NULL-deference * kernel oops. Illegal ranges of incoming indices are caught too. */ -extern inline unsigned long fix_to_virt(const unsigned int idx) +static inline unsigned long fix_to_virt(const unsigned int idx) { /* * this branch gets completely eliminated after inlining, |