Skip to content

Commit

Permalink
[media] mantis: trivial module parameter documentation fix
Browse files Browse the repository at this point in the history
The default for "verbose" is 0.  Update description to match.

Signed-off-by: Bjørn Mork <bjorn@mork.no>
Acked-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Bjørn Mork authored and Mauro Carvalho Chehab committed May 20, 2011
1 parent abd34d8 commit 0618ece
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/media/dvb/mantis/hopper_cards.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

static unsigned int verbose;
module_param(verbose, int, 0644);
MODULE_PARM_DESC(verbose, "verbose startup messages, default is 1 (yes)");
MODULE_PARM_DESC(verbose, "verbose startup messages, default is 0 (no)");

#define DRIVER_NAME "Hopper"

Expand Down
2 changes: 1 addition & 1 deletion drivers/media/dvb/mantis/mantis_cards.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

static unsigned int verbose;
module_param(verbose, int, 0644);
MODULE_PARM_DESC(verbose, "verbose startup messages, default is 1 (yes)");
MODULE_PARM_DESC(verbose, "verbose startup messages, default is 0 (no)");

static int devs;

Expand Down

0 comments on commit 0618ece

Please sign in to comment.