OMAP: DSS2: Fix def_disp module param description
MODULE_PARM_DESC() takes the name of the actual module parameter, not the name of the variable, as input. Fix the module parameter description for def_disp. Signed-off-by: Jani Nikula <jani@nikula.org> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
545376e734
commit
ac425ed5fb
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ static struct {
|
||||||
|
|
||||||
static char *def_disp_name;
|
static char *def_disp_name;
|
||||||
module_param_named(def_disp, def_disp_name, charp, 0);
|
module_param_named(def_disp, def_disp_name, charp, 0);
|
||||||
MODULE_PARM_DESC(def_disp_name, "default display name");
|
MODULE_PARM_DESC(def_disp, "default display name");
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
unsigned int dss_debug;
|
unsigned int dss_debug;
|
||||||
|
|
Loading…
Add table
Reference in a new issue