mirror of
https://github.com/torvalds/linux.git
synced 2026-08-03 13:58:32 +02:00
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:
|
||
|---|---|---|
| .. | ||
| drm_client_internal.h | ||
| drm_client_setup.c | ||
| drm_fbdev_client.c | ||
| drm_log.c | ||
| Kconfig | ||
| Makefile | ||