All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: goldfish: (coding style) Add spaces around the "+" to conform to checkpatch
@ 2015-11-19  8:38 Christian Colic
  0 siblings, 0 replies; only message in thread
From: Christian Colic @ 2015-11-19  8:38 UTC (permalink / raw)
  To: gregkh, ricardo.ribalda, alan, mahfouz.saif.elyazal; +Cc: devel, linux-kernel

Added a space around the "+" at: "reg_base+addr2" to clear up a checkpatch check.

Signed-off-by: Christian Colic <colic.christian@gmail.com>
---
 drivers/staging/goldfish/goldfish_audio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/goldfish/goldfish_audio.c b/drivers/staging/goldfish/goldfish_audio.c
index b0927e4..f1e1838 100644
--- a/drivers/staging/goldfish/goldfish_audio.c
+++ b/drivers/staging/goldfish/goldfish_audio.c
@@ -63,7 +63,7 @@ struct goldfish_audio {
 #define AUDIO_READ(data, addr)		(readl(data->reg_base + addr))
 #define AUDIO_WRITE(data, addr, x)	(writel(x, data->reg_base + addr))
 #define AUDIO_WRITE64(data, addr, addr2, x)	\
-	(gf_write_dma_addr((x), data->reg_base + addr, data->reg_base+addr2))
+	(gf_write_dma_addr((x), data->reg_base + addr, data->reg_base + addr2))
 
 /*
  *  temporary variable used between goldfish_audio_probe() and
-- 
2.5.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-11-19  8:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-19  8:38 [PATCH] staging: goldfish: (coding style) Add spaces around the "+" to conform to checkpatch Christian Colic

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.