Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1655342
| From | SF Markus Elfring <elfring@users.sourceforge.net> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 3/3] ARM: dmabounce: Combine substrings for two messages |
| Date | 2017-06-01 18:10 +0200 |
| Message-ID | <tNAPG-4Ly-51@gated-at.bofh.it> (permalink) |
| References | <tNAFY-4sr-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Thu, 1 Jun 2017 17:23:52 +0200
The script "checkpatch.pl" pointed information out like the following.
WARNING: quoted string split across lines
Thus fix the affected source code places.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
arch/arm/common/dmabounce.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/arch/arm/common/dmabounce.c b/arch/arm/common/dmabounce.c
index 9ef7ab64b3d8..e2fbdab41810 100644
--- a/arch/arm/common/dmabounce.c
+++ b/arch/arm/common/dmabounce.c
@@ -227,8 +227,9 @@ static int needs_bounce(struct device *dev, dma_addr_t dma_addr, size_t size)
limit = (mask + 1) & ~mask;
if (limit && size > limit) {
- dev_err(dev, "DMA mapping too big (requested %#x "
- "mask %#Lx)\n", size, *dev->dma_mask);
+ dev_err(dev,
+ "DMA mapping too big (requested %#x mask %#Lx)\n",
+ size, *dev->dma_mask);
return -E2BIG;
}
@@ -546,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.13.0
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 0/3] ARM: dmabounce: Adjustments for four function implementations SF Markus Elfring <elfring@users.sourceforge.net> - 2017-06-01 18:00 +0200 [PATCH 1/3] ARM: dmabounce: Improve a size determination in two functions SF Markus Elfring <elfring@users.sourceforge.net> - 2017-06-01 18:10 +0200 [PATCH 3/3] ARM: dmabounce: Combine substrings for two messages SF Markus Elfring <elfring@users.sourceforge.net> - 2017-06-01 18:10 +0200 [PATCH 2/3] ARM: dmabounce: Delete an error message for a failed memory allocation in two functions SF Markus Elfring <elfring@users.sourceforge.net> - 2017-06-01 18:10 +0200
csiph-web