Skip to content

Commit 0a4a18e

Browse files
rddunlaptdz
authored andcommitted
drm/client: fix MODULE_PARM_DESC string for "active"
The MODULE_PARM_DESC string for the "active" parameter is missing a space and has an extraneous trailing ']' character. Correct these. Before patch: $ modinfo -p ./drm_client_lib.ko active:Choose which drm client to start, default isfbdev] (string) After patch: $ modinfo -p ./drm_client_lib.ko active:Choose which drm client to start, default is fbdev (string) Fixes: f7b4244 ("drm/log: Introduce a new boot logger to draw the kmsg on the screen") Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Jocelyn Falempe <jfalempe@redhat.com> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Link: https://patch.msgid.link/20251112010920.2355712-1-rdunlap@infradead.org
1 parent 576c930 commit 0a4a18e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/gpu/drm/clients/drm_client_setup.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
static char drm_client_default[16] = CONFIG_DRM_CLIENT_DEFAULT;
1414
module_param_string(active, drm_client_default, sizeof(drm_client_default), 0444);
1515
MODULE_PARM_DESC(active,
16-
"Choose which drm client to start, default is"
17-
CONFIG_DRM_CLIENT_DEFAULT "]");
16+
"Choose which drm client to start, default is "
17+
CONFIG_DRM_CLIENT_DEFAULT);
1818

1919
/**
2020
* drm_client_setup() - Setup in-kernel DRM clients

0 commit comments

Comments
 (0)