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

drm/bridge: sii902x: Add missing \n to the end of some dev_err messages

Trivial fix.
Some dev_err messages in this driver are missing \n, so add them.

Signed-off-by: Liu Ying <gnuiyl@gmail.com>
Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1491877339-19913-1-git-send-email-gnuiyl@gmail.com

authored by

Liu Ying and committed by
Andrzej Hajda
ce9971de 3a753b9e

+3 -3
+3 -3
drivers/gpu/drm/bridge/sii902x.c
··· 160 160 time_before(jiffies, timeout)); 161 161 162 162 if (!(status & SII902X_SYS_CTRL_DDC_BUS_GRTD)) { 163 - dev_err(&sii902x->i2c->dev, "failed to acquire the i2c bus"); 163 + dev_err(&sii902x->i2c->dev, "failed to acquire the i2c bus\n"); 164 164 return -ETIMEDOUT; 165 165 } 166 166 ··· 202 202 203 203 if (status & (SII902X_SYS_CTRL_DDC_BUS_REQ | 204 204 SII902X_SYS_CTRL_DDC_BUS_GRTD)) { 205 - dev_err(&sii902x->i2c->dev, "failed to release the i2c bus"); 205 + dev_err(&sii902x->i2c->dev, "failed to release the i2c bus\n"); 206 206 return -ETIMEDOUT; 207 207 } 208 208 ··· 298 298 299 299 if (!drm_core_check_feature(drm, DRIVER_ATOMIC)) { 300 300 dev_err(&sii902x->i2c->dev, 301 - "sii902x driver is only compatible with DRM devices supporting atomic updates"); 301 + "sii902x driver is only compatible with DRM devices supporting atomic updates\n"); 302 302 return -ENOTSUPP; 303 303 } 304 304