mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
module: rename KERNEL_PARAM_FL_NOARG to avoid confusion
Make it clear this is about kernel_param_ops, not kernel_param (which will soon have a flags field of its own). No functional changes. Cc: Rusty Russell <rusty@rustcorp.com.au> Cc: Jean Delvare <khali@linux-fr.org> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Li Zhong <zhong@linux.vnet.ibm.com> Cc: Jon Mason <jon.mason@intel.com> Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
68e370289c
commit
6a4c264313
4 changed files with 7 additions and 7 deletions
|
@ -42,7 +42,7 @@ struct kernel_param;
|
|||
* NOARG - the parameter allows for no argument (foo instead of foo=1)
|
||||
*/
|
||||
enum {
|
||||
KERNEL_PARAM_FL_NOARG = (1 << 0)
|
||||
KERNEL_PARAM_OPS_FL_NOARG = (1 << 0)
|
||||
};
|
||||
|
||||
struct kernel_param_ops {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue