OSDN Git Service

drm/panel: dsi-cm: replace snprintf in show functions with sysfs_emit
authorQing Wang <wangqing@vivo.com>
Fri, 15 Oct 2021 06:48:10 +0000 (23:48 -0700)
committerSam Ravnborg <sam@ravnborg.org>
Fri, 15 Oct 2021 18:14:31 +0000 (20:14 +0200)
commit5f9741f53a3e0e84befc60cc1491272d18564ea0
treefc33ff29b972c31de89d31847ea025692ff6a0ca
parentf6632721cd6231e1bf28b5317dcc7543e43359f7
drm/panel: dsi-cm: replace snprintf in show functions with sysfs_emit

show() must not use snprintf() when formatting the value to be
returned to user space.

Fix the following coccicheck warning:
drivers/gpu/drm/panel/panel-dsi-cm.c:251: WARNING: use scnprintf or sprintf.
drivers/gpu/drm/panel/panel-dsi-cm.c:271: WARNING: use scnprintf or sprintf.

Use sysfs_emit instead of scnprintf or sprintf makes more sense.

Signed-off-by: Qing Wang <wangqing@vivo.com>
Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Link: https://patchwork.freedesktop.org/patch/msgid/1634280490-4429-1-git-send-email-wangqing@vivo.com
drivers/gpu/drm/panel/panel-dsi-cm.c