]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/moduleparam.h
treewide: Fix function prototypes for module_param_call()
[mirror_ubuntu-bionic-kernel.git] / include / linux / moduleparam.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_MODULE_PARAMS_H
2#define _LINUX_MODULE_PARAMS_H
3/* (C) Copyright 2001, 2002 Rusty Russell IBM Corporation */
4#include <linux/init.h>
5#include <linux/stringify.h>
6#include <linux/kernel.h>
7
8/* You can override this manually, but generally this should match the
9 module name. */
10#ifdef MODULE
11#define MODULE_PARAM_PREFIX /* empty */
12#else
367cb704 13#define MODULE_PARAM_PREFIX KBUILD_MODNAME "."
1da177e4
LT
14#endif
15
730b69d2
RR
16/* Chosen so that structs with an unsigned long line up. */
17#define MAX_PARAM_PREFIX_LEN (64 - sizeof(unsigned long))
18
b75be420 19#ifdef MODULE
1da177e4 20#define __MODULE_INFO(tag, name, info) \
34182eea 21static const char __UNIQUE_ID(name)[] \
b6472776
JB
22 __used __attribute__((section(".modinfo"), unused, aligned(1))) \
23 = __stringify(tag) "=" info
1da177e4 24#else /* !MODULE */
b75be420
LW
25/* This struct is here for syntactic coherency, it is not used */
26#define __MODULE_INFO(tag, name, info) \
34182eea 27 struct __UNIQUE_ID(name) {}
1da177e4
LT
28#endif
29#define __MODULE_PARM_TYPE(name, _type) \
30 __MODULE_INFO(parmtype, name##type, #name ":" _type)
31
639938eb
PG
32/* One for each parameter, describing how to use it. Some files do
33 multiple of these per line, so can't just use MODULE_INFO. */
34#define MODULE_PARM_DESC(_parm, desc) \
35 __MODULE_INFO(parm, _parm, #_parm ":" desc)
36
1da177e4
LT
37struct kernel_param;
38
ab013c5f
SR
39/*
40 * Flags available for kernel_param_ops
41 *
42 * NOARG - the parameter allows for no argument (foo instead of foo=1)
43 */
44enum {
6a4c2643 45 KERNEL_PARAM_OPS_FL_NOARG = (1 << 0)
ab013c5f
SR
46};
47
9bbb9e5a 48struct kernel_param_ops {
ab013c5f
SR
49 /* How the ops should behave */
50 unsigned int flags;
9bbb9e5a
RR
51 /* Returns 0, or -errno. arg is in kp->arg. */
52 int (*set)(const char *val, const struct kernel_param *kp);
53 /* Returns length written or -errno. Buffer is 4k (ie. be short!) */
54 int (*get)(char *buffer, const struct kernel_param *kp);
e6df34a4
RR
55 /* Optional function to free kp->arg when module unloaded. */
56 void (*free)(void *arg);
9bbb9e5a 57};
1da177e4 58
91f9d330
JN
59/*
60 * Flags available for kernel_param
61 *
62 * UNSAFE - the parameter is dangerous and setting it will taint the kernel
bf616d21 63 * HWPARAM - Hardware param not permitted in lockdown mode
91f9d330
JN
64 */
65enum {
bf616d21
DH
66 KERNEL_PARAM_FL_UNSAFE = (1 << 0),
67 KERNEL_PARAM_FL_HWPARAM = (1 << 1),
91f9d330
JN
68};
69
1da177e4
LT
70struct kernel_param {
71 const char *name;
b51d23e4 72 struct module *mod;
9bbb9e5a 73 const struct kernel_param_ops *ops;
5104b7d7 74 const u16 perm;
91f9d330
JN
75 s8 level;
76 u8 flags;
22e48eaf
JB
77 union {
78 void *arg;
79 const struct kparam_string *str;
80 const struct kparam_array *arr;
81 };
1da177e4
LT
82};
83
63a12d9d
GU
84extern const struct kernel_param __start___param[], __stop___param[];
85
1da177e4
LT
86/* Special one for strings we want to copy into */
87struct kparam_string {
88 unsigned int maxlen;
89 char *string;
90};
91
92/* Special one for arrays */
93struct kparam_array
94{
95 unsigned int max;
c5be0b2e 96 unsigned int elemsize;
1da177e4 97 unsigned int *num;
9bbb9e5a 98 const struct kernel_param_ops *ops;
1da177e4
LT
99 void *elem;
100};
101
546970bc
RR
102/**
103 * module_param - typesafe helper for a module/cmdline parameter
104 * @value: the variable to alter, and exposed parameter name.
105 * @type: the type of the parameter
106 * @perm: visibility in sysfs.
107 *
108 * @value becomes the module parameter, or (prefixed by KBUILD_MODNAME and a
109 * ".") the kernel commandline parameter. Note that - is changed to _, so
110 * the user can use "foo-bar=1" even for variable "foo_bar".
111 *
112 * @perm is 0 if the the variable is not to appear in sysfs, or 0444
113 * for world-readable, 0644 for root-writable, etc. Note that if it
b51d23e4 114 * is writable, you may need to use kernel_param_lock() around
546970bc
RR
115 * accesses (esp. charp, which can be kfreed when it changes).
116 *
117 * The @type is simply pasted to refer to a param_ops_##type and a
118 * param_check_##type: for convenience many standard types are provided but
119 * you can create your own by defining those variables.
120 *
121 * Standard types are:
122 * byte, short, ushort, int, uint, long, ulong
123 * charp: a character pointer
124 * bool: a bool, values 0/1, y/n, Y/N.
125 * invbool: the above, only sense-reversed (N = true).
126 */
127#define module_param(name, type, perm) \
128 module_param_named(name, name, type, perm)
129
3baee201
JN
130/**
131 * module_param_unsafe - same as module_param but taints kernel
132 */
133#define module_param_unsafe(name, type, perm) \
134 module_param_named_unsafe(name, name, type, perm)
135
546970bc
RR
136/**
137 * module_param_named - typesafe helper for a renamed module/cmdline parameter
138 * @name: a valid C identifier which is the parameter name.
139 * @value: the actual lvalue to alter.
140 * @type: the type of the parameter
141 * @perm: visibility in sysfs.
142 *
143 * Usually it's a good idea to have variable names and user-exposed names the
144 * same, but that's harder if the variable must be non-static or is inside a
145 * structure. This allows exposure under a different name.
146 */
147#define module_param_named(name, value, type, perm) \
148 param_check_##type(name, &(value)); \
149 module_param_cb(name, &param_ops_##type, &value, perm); \
150 __MODULE_PARM_TYPE(name, #type)
151
3baee201
JN
152/**
153 * module_param_named_unsafe - same as module_param_named but taints kernel
154 */
155#define module_param_named_unsafe(name, value, type, perm) \
156 param_check_##type(name, &(value)); \
157 module_param_cb_unsafe(name, &param_ops_##type, &value, perm); \
158 __MODULE_PARM_TYPE(name, #type)
159
546970bc
RR
160/**
161 * module_param_cb - general callback for a module/cmdline parameter
162 * @name: a valid C identifier which is the parameter name.
163 * @ops: the set & get operations for this parameter.
164 * @perm: visibility in sysfs.
165 *
166 * The ops can have NULL set or get functions.
167 */
168#define module_param_cb(name, ops, arg, perm) \
91f9d330 169 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, 0)
026cee00 170
3baee201
JN
171#define module_param_cb_unsafe(name, ops, arg, perm) \
172 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1, \
173 KERNEL_PARAM_FL_UNSAFE)
174
026cee00
PM
175/**
176 * <level>_param_cb - general callback for a module/cmdline parameter
177 * to be evaluated before certain initcall level
178 * @name: a valid C identifier which is the parameter name.
179 * @ops: the set & get operations for this parameter.
180 * @perm: visibility in sysfs.
181 *
182 * The ops can have NULL set or get functions.
183 */
184#define __level_param_cb(name, ops, arg, perm, level) \
91f9d330 185 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, level, 0)
026cee00
PM
186
187#define core_param_cb(name, ops, arg, perm) \
188 __level_param_cb(name, ops, arg, perm, 1)
189
190#define postcore_param_cb(name, ops, arg, perm) \
191 __level_param_cb(name, ops, arg, perm, 2)
192
193#define arch_param_cb(name, ops, arg, perm) \
194 __level_param_cb(name, ops, arg, perm, 3)
195
196#define subsys_param_cb(name, ops, arg, perm) \
197 __level_param_cb(name, ops, arg, perm, 4)
198
199#define fs_param_cb(name, ops, arg, perm) \
200 __level_param_cb(name, ops, arg, perm, 5)
201
202#define device_param_cb(name, ops, arg, perm) \
203 __level_param_cb(name, ops, arg, perm, 6)
204
205#define late_param_cb(name, ops, arg, perm) \
206 __level_param_cb(name, ops, arg, perm, 7)
546970bc 207
91d35dd9
IK
208/* On alpha, ia64 and ppc64 relocations to global data cannot go into
209 read-only sections (which is part of respective UNIX ABI on these
210 platforms). So 'const' makes no sense and even causes compile failures
211 with some compilers. */
212#if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64)
213#define __moduleparam_const
214#else
215#define __moduleparam_const const
216#endif
217
1da177e4 218/* This is the fundamental function for registering boot/module
546970bc 219 parameters. */
91f9d330 220#define __module_param_call(prefix, name, ops, arg, perm, level, flags) \
9774a1f5 221 /* Default value instead of permissions? */ \
b51d23e4 222 static const char __param_str_##name[] = prefix #name; \
91d35dd9 223 static struct kernel_param __moduleparam_const __param_##name \
3ff6eecc 224 __used \
1da177e4 225 __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \
b51d23e4
DS
226 = { __param_str_##name, THIS_MODULE, ops, \
227 VERIFY_OCTAL_PERMISSIONS(perm), level, flags, { arg } }
9bbb9e5a
RR
228
229/* Obsolete - use module_param_cb() */
230#define module_param_call(name, set, get, arg, perm) \
b2f270e8 231 static const struct kernel_param_ops __param_ops_##name = \
184c3fc3 232 { .flags = 0, (void *)set, (void *)get }; \
9bbb9e5a 233 __module_param_call(MODULE_PARAM_PREFIX, \
b2f270e8 234 name, &__param_ops_##name, arg, perm, -1, 0)
1da177e4 235
907b29eb 236#ifdef CONFIG_SYSFS
b51d23e4
DS
237extern void kernel_param_lock(struct module *mod);
238extern void kernel_param_unlock(struct module *mod);
907b29eb 239#else
b51d23e4 240static inline void kernel_param_lock(struct module *mod)
907b29eb
RR
241{
242}
b51d23e4 243static inline void kernel_param_unlock(struct module *mod)
907b29eb
RR
244{
245}
246#endif
247
67e67cea
RR
248#ifndef MODULE
249/**
250 * core_param - define a historical core kernel parameter.
251 * @name: the name of the cmdline and sysfs parameter (often the same as var)
252 * @var: the variable
546970bc 253 * @type: the type of the parameter
67e67cea
RR
254 * @perm: visibility in sysfs
255 *
256 * core_param is just like module_param(), but cannot be modular and
257 * doesn't add a prefix (such as "printk."). This is for compatibility
258 * with __setup(), and it makes sense as truly core parameters aren't
259 * tied to the particular file they're in.
260 */
261#define core_param(name, var, type, perm) \
262 param_check_##type(name, &(var)); \
91f9d330 263 __module_param_call("", name, &param_ops_##type, &var, perm, -1, 0)
ec0ccc16
DT
264
265/**
266 * core_param_unsafe - same as core_param but taints kernel
267 */
268#define core_param_unsafe(name, var, type, perm) \
269 param_check_##type(name, &(var)); \
270 __module_param_call("", name, &param_ops_##type, &var, perm, \
271 -1, KERNEL_PARAM_FL_UNSAFE)
272
67e67cea
RR
273#endif /* !MODULE */
274
546970bc
RR
275/**
276 * module_param_string - a char array parameter
277 * @name: the name of the parameter
278 * @string: the string variable
279 * @len: the maximum length of the string, incl. terminator
280 * @perm: visibility in sysfs.
281 *
282 * This actually copies the string when it's set (unlike type charp).
283 * @len is usually just sizeof(string).
284 */
1da177e4 285#define module_param_string(name, string, len, perm) \
22e48eaf 286 static const struct kparam_string __param_string_##name \
1da177e4 287 = { len, string }; \
fddd5201 288 __module_param_call(MODULE_PARAM_PREFIX, name, \
9bbb9e5a 289 &param_ops_string, \
91f9d330 290 .str = &__param_string_##name, perm, -1, 0);\
1da177e4
LT
291 __MODULE_PARM_TYPE(name, "string")
292
b1e4d20c
MS
293/**
294 * parameq - checks if two parameter names match
295 * @name1: parameter name 1
296 * @name2: parameter name 2
297 *
298 * Returns true if the two parameter names are equal.
299 * Dashes (-) are considered equal to underscores (_).
300 */
301extern bool parameq(const char *name1, const char *name2);
302
303/**
304 * parameqn - checks if two parameter names match
305 * @name1: parameter name 1
306 * @name2: parameter name 2
307 * @n: the length to compare
308 *
309 * Similar to parameq(), except it compares @n characters.
310 */
311extern bool parameqn(const char *name1, const char *name2, size_t n);
312
1da177e4 313/* Called on module insert or kernel boot */
51e158c1 314extern char *parse_args(const char *name,
1da177e4 315 char *args,
914dcaa8 316 const struct kernel_param *params,
1da177e4 317 unsigned num,
026cee00
PM
318 s16 level_min,
319 s16 level_max,
ecc86170 320 void *arg,
9fb48c74 321 int (*unknown)(char *param, char *val,
ecc86170 322 const char *doing, void *arg));
1da177e4 323
e180a6b7
RR
324/* Called by module remove. */
325#ifdef CONFIG_SYSFS
326extern void destroy_params(const struct kernel_param *params, unsigned num);
327#else
328static inline void destroy_params(const struct kernel_param *params,
329 unsigned num)
330{
331}
332#endif /* !CONFIG_SYSFS */
333
1da177e4
LT
334/* All the helper functions */
335/* The macros to do compile-time type checking stolen from Jakub
336 Jelinek, who IIRC came up with this idea for the 2.4 module init code. */
337#define __param_check(name, p, type) \
0283f9a5 338 static inline type __always_unused *__check_##name(void) { return(p); }
1da177e4 339
9c27847d 340extern const struct kernel_param_ops param_ops_byte;
9bbb9e5a
RR
341extern int param_set_byte(const char *val, const struct kernel_param *kp);
342extern int param_get_byte(char *buffer, const struct kernel_param *kp);
1da177e4
LT
343#define param_check_byte(name, p) __param_check(name, p, unsigned char)
344
9c27847d 345extern const struct kernel_param_ops param_ops_short;
9bbb9e5a
RR
346extern int param_set_short(const char *val, const struct kernel_param *kp);
347extern int param_get_short(char *buffer, const struct kernel_param *kp);
1da177e4
LT
348#define param_check_short(name, p) __param_check(name, p, short)
349
9c27847d 350extern const struct kernel_param_ops param_ops_ushort;
9bbb9e5a
RR
351extern int param_set_ushort(const char *val, const struct kernel_param *kp);
352extern int param_get_ushort(char *buffer, const struct kernel_param *kp);
1da177e4
LT
353#define param_check_ushort(name, p) __param_check(name, p, unsigned short)
354
9c27847d 355extern const struct kernel_param_ops param_ops_int;
9bbb9e5a
RR
356extern int param_set_int(const char *val, const struct kernel_param *kp);
357extern int param_get_int(char *buffer, const struct kernel_param *kp);
1da177e4
LT
358#define param_check_int(name, p) __param_check(name, p, int)
359
9c27847d 360extern const struct kernel_param_ops param_ops_uint;
9bbb9e5a
RR
361extern int param_set_uint(const char *val, const struct kernel_param *kp);
362extern int param_get_uint(char *buffer, const struct kernel_param *kp);
1da177e4
LT
363#define param_check_uint(name, p) __param_check(name, p, unsigned int)
364
9c27847d 365extern const struct kernel_param_ops param_ops_long;
9bbb9e5a
RR
366extern int param_set_long(const char *val, const struct kernel_param *kp);
367extern int param_get_long(char *buffer, const struct kernel_param *kp);
1da177e4
LT
368#define param_check_long(name, p) __param_check(name, p, long)
369
9c27847d 370extern const struct kernel_param_ops param_ops_ulong;
9bbb9e5a
RR
371extern int param_set_ulong(const char *val, const struct kernel_param *kp);
372extern int param_get_ulong(char *buffer, const struct kernel_param *kp);
1da177e4
LT
373#define param_check_ulong(name, p) __param_check(name, p, unsigned long)
374
9c27847d 375extern const struct kernel_param_ops param_ops_ullong;
b4210b81
HR
376extern int param_set_ullong(const char *val, const struct kernel_param *kp);
377extern int param_get_ullong(char *buffer, const struct kernel_param *kp);
378#define param_check_ullong(name, p) __param_check(name, p, unsigned long long)
379
9c27847d 380extern const struct kernel_param_ops param_ops_charp;
9bbb9e5a
RR
381extern int param_set_charp(const char *val, const struct kernel_param *kp);
382extern int param_get_charp(char *buffer, const struct kernel_param *kp);
3d9c637f 383extern void param_free_charp(void *arg);
1da177e4
LT
384#define param_check_charp(name, p) __param_check(name, p, char *)
385
72db395f 386/* We used to allow int as well as bool. We're taking that away! */
9c27847d 387extern const struct kernel_param_ops param_ops_bool;
9bbb9e5a
RR
388extern int param_set_bool(const char *val, const struct kernel_param *kp);
389extern int param_get_bool(char *buffer, const struct kernel_param *kp);
72db395f 390#define param_check_bool(name, p) __param_check(name, p, bool)
1da177e4 391
d19f05d8
LR
392extern const struct kernel_param_ops param_ops_bool_enable_only;
393extern int param_set_bool_enable_only(const char *val,
394 const struct kernel_param *kp);
395/* getter is the same as for the regular bool */
396#define param_check_bool_enable_only param_check_bool
397
9c27847d 398extern const struct kernel_param_ops param_ops_invbool;
9bbb9e5a
RR
399extern int param_set_invbool(const char *val, const struct kernel_param *kp);
400extern int param_get_invbool(char *buffer, const struct kernel_param *kp);
9a71af2c 401#define param_check_invbool(name, p) __param_check(name, p, bool)
1da177e4 402
69116f27 403/* An int, which can only be set like a bool (though it shows as an int). */
9c27847d 404extern const struct kernel_param_ops param_ops_bint;
69116f27
RR
405extern int param_set_bint(const char *val, const struct kernel_param *kp);
406#define param_get_bint param_get_int
407#define param_check_bint param_check_int
408
546970bc
RR
409/**
410 * module_param_array - a parameter which is an array of some type
411 * @name: the name of the array variable
412 * @type: the type, as per module_param()
413 * @nump: optional pointer filled in with the number written
414 * @perm: visibility in sysfs
415 *
416 * Input and output are as comma-separated values. Commas inside values
417 * don't work properly (eg. an array of charp).
418 *
419 * ARRAY_SIZE(@name) is used to determine the number of elements in the
420 * array, so the definition must be visible.
421 */
422#define module_param_array(name, type, nump, perm) \
423 module_param_array_named(name, name, type, nump, perm)
424
425/**
426 * module_param_array_named - renamed parameter which is an array of some type
427 * @name: a valid C identifier which is the parameter name
428 * @array: the name of the array variable
429 * @type: the type, as per module_param()
430 * @nump: optional pointer filled in with the number written
431 * @perm: visibility in sysfs
432 *
433 * This exposes a different name than the actual variable name. See
434 * module_param_named() for why this might be necessary.
435 */
1da177e4 436#define module_param_array_named(name, array, type, nump, perm) \
bafeafea 437 param_check_##type(name, &(array)[0]); \
22e48eaf 438 static const struct kparam_array __param_arr_##name \
c5be0b2e
RK
439 = { .max = ARRAY_SIZE(array), .num = nump, \
440 .ops = &param_ops_##type, \
441 .elemsize = sizeof(array[0]), .elem = array }; \
fddd5201 442 __module_param_call(MODULE_PARAM_PREFIX, name, \
9bbb9e5a 443 &param_array_ops, \
fddd5201 444 .arr = &__param_arr_##name, \
91f9d330 445 perm, -1, 0); \
1da177e4
LT
446 __MODULE_PARM_TYPE(name, "array of " #type)
447
bf616d21
DH
448enum hwparam_type {
449 hwparam_ioport, /* Module parameter configures an I/O port */
450 hwparam_iomem, /* Module parameter configures an I/O mem address */
451 hwparam_ioport_or_iomem, /* Module parameter could be either, depending on other option */
401e000a 452 hwparam_irq, /* Module parameter configures an IRQ */
bf616d21
DH
453 hwparam_dma, /* Module parameter configures a DMA channel */
454 hwparam_dma_addr, /* Module parameter configures a DMA buffer address */
455 hwparam_other, /* Module parameter configures some other value */
456};
457
458/**
459 * module_param_hw_named - A parameter representing a hw parameters
460 * @name: a valid C identifier which is the parameter name.
461 * @value: the actual lvalue to alter.
462 * @type: the type of the parameter
463 * @hwtype: what the value represents (enum hwparam_type)
464 * @perm: visibility in sysfs.
465 *
466 * Usually it's a good idea to have variable names and user-exposed names the
467 * same, but that's harder if the variable must be non-static or is inside a
468 * structure. This allows exposure under a different name.
469 */
470#define module_param_hw_named(name, value, type, hwtype, perm) \
471 param_check_##type(name, &(value)); \
472 __module_param_call(MODULE_PARAM_PREFIX, name, \
473 &param_ops_##type, &value, \
474 perm, -1, \
475 KERNEL_PARAM_FL_HWPARAM | (hwparam_##hwtype & 0)); \
476 __MODULE_PARM_TYPE(name, #type)
477
478#define module_param_hw(name, type, hwtype, perm) \
479 module_param_hw_named(name, name, type, hwtype, perm)
480
481/**
482 * module_param_hw_array - A parameter representing an array of hw parameters
483 * @name: the name of the array variable
484 * @type: the type, as per module_param()
485 * @hwtype: what the value represents (enum hwparam_type)
486 * @nump: optional pointer filled in with the number written
487 * @perm: visibility in sysfs
488 *
489 * Input and output are as comma-separated values. Commas inside values
490 * don't work properly (eg. an array of charp).
491 *
492 * ARRAY_SIZE(@name) is used to determine the number of elements in the
493 * array, so the definition must be visible.
494 */
495#define module_param_hw_array(name, type, hwtype, nump, perm) \
496 param_check_##type(name, &(name)[0]); \
497 static const struct kparam_array __param_arr_##name \
498 = { .max = ARRAY_SIZE(name), .num = nump, \
499 .ops = &param_ops_##type, \
500 .elemsize = sizeof(name[0]), .elem = name }; \
501 __module_param_call(MODULE_PARAM_PREFIX, name, \
502 &param_array_ops, \
503 .arr = &__param_arr_##name, \
504 perm, -1, \
505 KERNEL_PARAM_FL_HWPARAM | (hwparam_##hwtype & 0)); \
506 __MODULE_PARM_TYPE(name, "array of " #type)
507
508
9c27847d 509extern const struct kernel_param_ops param_array_ops;
1da177e4 510
9c27847d 511extern const struct kernel_param_ops param_ops_string;
9bbb9e5a
RR
512extern int param_set_copystring(const char *val, const struct kernel_param *);
513extern int param_get_string(char *buffer, const struct kernel_param *kp);
1da177e4 514
b634d130 515/* for exporting parameters in /sys/module/.../parameters */
1da177e4
LT
516
517struct module;
518
ef665c1a 519#if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
1da177e4 520extern int module_param_sysfs_setup(struct module *mod,
9bbb9e5a 521 const struct kernel_param *kparam,
1da177e4
LT
522 unsigned int num_params);
523
524extern void module_param_sysfs_remove(struct module *mod);
ef665c1a
RD
525#else
526static inline int module_param_sysfs_setup(struct module *mod,
9bbb9e5a 527 const struct kernel_param *kparam,
ef665c1a
RD
528 unsigned int num_params)
529{
530 return 0;
531}
532
533static inline void module_param_sysfs_remove(struct module *mod)
534{ }
535#endif
1da177e4
LT
536
537#endif /* _LINUX_MODULE_PARAMS_H */