aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/sti/sti_cursor.c
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2017-05-05 15:00:46 +0200
committerBenjamin Gaignard <benjamin.gaignard@linaro.org>2017-05-09 14:45:51 +0200
commite9635133d47b9c685bbb69c5e4a63408109d140f (patch)
tree718ba7347fe8d2fb61710c9ae9bcef00940eb6ad /drivers/gpu/drm/sti/sti_cursor.c
parentdrm/sti: Reduce function calls for sequence output at five places (diff)
downloadlinux-dev-e9635133d47b9c685bbb69c5e4a63408109d140f.tar.xz
linux-dev-e9635133d47b9c685bbb69c5e4a63408109d140f.zip
drm/sti: Replace 17 seq_puts() calls by seq_putc()
Single characters should be put into a sequence at several places. Thus use the corresponding function "seq_putc". This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Benjamin Gaignard <benjamin.gaignard@linaro.org> Link: http://patchwork.freedesktop.org/patch/msgid/5b4e2964-0742-8367-976f-678356d9347a@users.sourceforge.net
Diffstat (limited to 'drivers/gpu/drm/sti/sti_cursor.c')
-rw-r--r--drivers/gpu/drm/sti/sti_cursor.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/sti/sti_cursor.c b/drivers/gpu/drm/sti/sti_cursor.c
index cca75bddb9ad..cd35b9d9de26 100644
--- a/drivers/gpu/drm/sti/sti_cursor.c
+++ b/drivers/gpu/drm/sti/sti_cursor.c
@@ -121,8 +121,7 @@ static int cursor_dbg_show(struct seq_file *s, void *data)
cursor_dbg_cml(s, cursor, readl(cursor->regs + CUR_CML));
DBGFS_DUMP(CUR_AWS);
DBGFS_DUMP(CUR_AWE);
- seq_puts(s, "\n");
-
+ seq_putc(s, '\n');
return 0;
}