diff options
Diffstat (limited to 'include/linux/moduleparam.h')
-rw-r--r-- | include/linux/moduleparam.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/moduleparam.h b/include/linux/moduleparam.h index c3eb102a9cc8..175f6995d1af 100644 --- a/include/linux/moduleparam.h +++ b/include/linux/moduleparam.h | |||
@@ -346,7 +346,7 @@ static inline void destroy_params(const struct kernel_param *params, | |||
346 | /* The macros to do compile-time type checking stolen from Jakub | 346 | /* The macros to do compile-time type checking stolen from Jakub |
347 | Jelinek, who IIRC came up with this idea for the 2.4 module init code. */ | 347 | Jelinek, who IIRC came up with this idea for the 2.4 module init code. */ |
348 | #define __param_check(name, p, type) \ | 348 | #define __param_check(name, p, type) \ |
349 | static inline type *__check_##name(void) { return(p); } | 349 | static inline type __always_unused *__check_##name(void) { return(p); } |
350 | 350 | ||
351 | extern struct kernel_param_ops param_ops_byte; | 351 | extern struct kernel_param_ops param_ops_byte; |
352 | extern int param_set_byte(const char *val, const struct kernel_param *kp); | 352 | extern int param_set_byte(const char *val, const struct kernel_param *kp); |