aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/moduleparam.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/moduleparam.h b/include/linux/moduleparam.h
index 593501996574..b43f4752304e 100644
--- a/include/linux/moduleparam.h
+++ b/include/linux/moduleparam.h
@@ -224,7 +224,7 @@ struct kparam_array
224/* Obsolete - use module_param_cb() */ 224/* Obsolete - use module_param_cb() */
225#define module_param_call(name, set, get, arg, perm) \ 225#define module_param_call(name, set, get, arg, perm) \
226 static struct kernel_param_ops __param_ops_##name = \ 226 static struct kernel_param_ops __param_ops_##name = \
227 { 0, (void *)set, (void *)get }; \ 227 { .flags = 0, (void *)set, (void *)get }; \
228 __module_param_call(MODULE_PARAM_PREFIX, \ 228 __module_param_call(MODULE_PARAM_PREFIX, \
229 name, &__param_ops_##name, arg, \ 229 name, &__param_ops_##name, arg, \
230 (perm) + sizeof(__check_old_set_param(set))*0, -1, 0) 230 (perm) + sizeof(__check_old_set_param(set))*0, -1, 0)