Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1481423 > unrolled thread

[PATCH][V3] dma-mapping: add in missing white space in error message text

Started byColin King <colin.king@canonical.com>
First post2016-09-12 17:30 +0200
Last post2016-09-12 17:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH][V3] dma-mapping: add in missing white space in error message text Colin King <colin.king@canonical.com> - 2016-09-12 17:30 +0200

#1481423 — [PATCH][V3] dma-mapping: add in missing white space in error message text

FromColin King <colin.king@canonical.com>
Date2016-09-12 17:30 +0200
Subject[PATCH][V3] dma-mapping: add in missing white space in error message text
Message-ID<sgBlf-548-11@gated-at.bofh.it>
From: Colin Ian King <colin.king@canonical.com>

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 <colin.king@canonical.com>
---
 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

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web