summaryrefslogtreecommitdiff
path: root/drivers/message
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@home.transmeta.com>2002-10-17 20:09:37 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2002-10-17 20:09:37 -0700
commit5afffee261d133e7fe75e00a1ddd779712f17aac (patch)
tree9eb4d1374a8882850408475f4b26ee3c666a23bb /drivers/message
parentde6639d22049433f7f5d056209bae39ec8005d19 (diff)
parent6823c0fe886f4c095ae05a79d4204e76395d016a (diff)
Merge
Diffstat (limited to 'drivers/message')
-rw-r--r--drivers/message/fusion/linux_compat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/message/fusion/linux_compat.h b/drivers/message/fusion/linux_compat.h
index a6e7ecdcb4e1..99575438c027 100644
--- a/drivers/message/fusion/linux_compat.h
+++ b/drivers/message/fusion/linux_compat.h
@@ -75,11 +75,11 @@ typedef int (*__init_module_func_t)(void);
typedef void (*__cleanup_module_func_t)(void);
#define module_init(x) \
int init_module(void) __attribute__((alias(#x))); \
- extern inline __init_module_func_t __init_module_inline(void) \
+ static inline __init_module_func_t __init_module_inline(void) \
{ return x; }
#define module_exit(x) \
void cleanup_module(void) __attribute__((alias(#x))); \
- extern inline __cleanup_module_func_t __cleanup_module_inline(void) \
+ static inline __cleanup_module_func_t __cleanup_module_inline(void) \
{ return x; }
#else