From: Colin Ian King Date: Wed, 12 Oct 2016 10:38:51 +0000 (+0200) Subject: s390/lcs: remove trailing space at end of dev_err message X-Git-Tag: v4.10-rc1~202^2~469^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f7e3a16c4a80add7ab965fb5d50dbe5f29ec1628;p=platform%2Fkernel%2Flinux-exynos.git s390/lcs: remove trailing space at end of dev_err message There is a trailing white space at the end of a dev_err message that does nothing useful - remove it. Signed-off-by: Colin Ian King Signed-off-by: Ursula Braun Signed-off-by: David S. Miller --- diff --git a/drivers/s390/net/lcs.c b/drivers/s390/net/lcs.c index 251db0a..211b31d 100644 --- a/drivers/s390/net/lcs.c +++ b/drivers/s390/net/lcs.c @@ -1888,7 +1888,7 @@ lcs_stop_device(struct net_device *dev) rc = lcs_stopcard(card); if (rc) dev_err(&card->dev->dev, - " Shutting down the LCS device failed\n "); + " Shutting down the LCS device failed\n"); return rc; }