From: Jani Nikula Date: Wed, 16 Feb 2011 10:53:44 +0000 (-0600) Subject: OMAP: DSS2: Fix def_disp module param description X-Git-Tag: v2.6.39-rc1~98^2~58^2~63 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ac425ed5fb0b6564d4eeee9fb13ef0c1f6da8e8f;p=karo-tx-linux.git 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 Signed-off-by: Tomi Valkeinen --- diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c index f56ee64f5b58..bcf69a462b5f 100644 --- a/drivers/video/omap2/dss/core.c +++ b/drivers/video/omap2/dss/core.c @@ -47,7 +47,7 @@ static struct { static char *def_disp_name; 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 unsigned int dss_debug;