Commit 29d4d6df107b9d86982dc759f5b1ddfe2c6b29c0

Authored by Rusty Russell
1 parent f17dda94d4

printk: fix unnecessary module_param_name.

You don't need module_param_name if the name is the same!

Cc: Yanmin Zhang <yanmin_zhang@linux.intel.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -532,7 +532,7 @@
532 532 }
533 533  
534 534 early_param("ignore_loglevel", ignore_loglevel_setup);
535   -module_param_named(ignore_loglevel, ignore_loglevel, bool, S_IRUGO | S_IWUSR);
  535 +module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR);
536 536 MODULE_PARM_DESC(ignore_loglevel, "ignore loglevel setting, to"
537 537 "print all kernel messages to the console.");
538 538