Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/fb-helper: Fix typo in parameter description

Fix typo in parameter description.

Fixes: 4be9bd10e22d ("drm/fb_helper: Allow leaking fbdev smem_start")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Link: https://patchwork.freedesktop.org/patch/msgid/1543905135-35293-1-git-send-email-weiyongjun1@huawei.com

authored by

Wei Yongjun and committed by
Neil Armstrong
b31a3ca7 3c613a3b

+1 -1
+1 -1
drivers/gpu/drm/drm_fb_helper.c
··· 71 71 #if IS_ENABLED(CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM) 72 72 static bool drm_leak_fbdev_smem = false; 73 73 module_param_unsafe(drm_leak_fbdev_smem, bool, 0600); 74 - MODULE_PARM_DESC(fbdev_emulation, 74 + MODULE_PARM_DESC(drm_leak_fbdev_smem, 75 75 "Allow unsafe leaking fbdev physical smem address [default=false]"); 76 76 #endif 77 77