From mboxrd@z Thu Jan 1 00:00:00 1970 From: colin.king@canonical.com (Colin King) Date: Mon, 12 Sep 2016 16:18:52 +0100 Subject: [PATCH][V3] dma-mapping: add in missing white space in error message text Message-ID: <20160912151852.10071-1-colin.king@canonical.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org From: Colin Ian King A dev_warn message spans two lines and the literal string is missing a white space between words. Add the white space and reformat the literal string to not span multiple lines. Signed-off-by: Colin Ian King --- arch/arm/common/dmabounce.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/arm/common/dmabounce.c b/arch/arm/common/dmabounce.c index 3012816..aef19d9 100644 --- a/arch/arm/common/dmabounce.c +++ b/arch/arm/common/dmabounce.c @@ -547,8 +547,7 @@ void dmabounce_unregister_dev(struct device *dev) if (!device_info) { dev_warn(dev, - "Never registered with dmabounce but attempting" - "to unregister!\n"); + "Never registered with dmabounce but attempting to unregister!\n"); return; } -- 2.9.3