Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1573239
| From | "Hendrik v. Raven" <hendrik@consetetur.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] staging: bcm2835-audio: fix spacing of macro |
| Date | 2017-02-03 17:30 +0100 |
| Message-ID | <t6OUh-442-11@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
removes the unwanted spaces inside of sizeof( ), removing a complaint of
checkpatch.pl. Also removes the second space behind the macro name.
Signed-off-by: Hendrik v. Raven <hendrik@consetetur.de>
---
drivers/staging/bcm2835-audio/vc_vchi_audioserv_defs.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/bcm2835-audio/vc_vchi_audioserv_defs.h b/drivers/staging/bcm2835-audio/vc_vchi_audioserv_defs.h
index 09f07fd891bb..dd2f162b1ccb 100644
--- a/drivers/staging/bcm2835-audio/vc_vchi_audioserv_defs.h
+++ b/drivers/staging/bcm2835-audio/vc_vchi_audioserv_defs.h
@@ -22,7 +22,7 @@
#define VC_AUDIO_SERVER_NAME MAKE_FOURCC("AUDS")
/* Maximum message length */
-#define VC_AUDIO_MAX_MSG_LEN (sizeof( VC_AUDIO_MSG_T ))
+#define VC_AUDIO_MAX_MSG_LEN (sizeof(VC_AUDIO_MSG_T))
/*
* List of screens that are currently supported
--
2.11.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] staging: bcm2835-audio: fix spacing of macro "Hendrik v. Raven" <hendrik@consetetur.de> - 2017-02-03 17:30 +0100
Re: [PATCH] staging: bcm2835-audio: fix spacing of macro Joe Perches <joe@perches.com> - 2017-02-03 18:30 +0100
[PATCH] staging: bcm2835-audio: remove unused macro "Hendrik v. Raven" <hendrik@consetetur.de> - 2017-02-03 20:00 +0100
Re: [PATCH] staging: bcm2835-audio: remove unused macro Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2017-02-05 11:50 +0100
csiph-web