Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1571700
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] staging: bcm2835-audio: fix empty-body warning |
| Date | 2017-02-01 17:30 +0100 |
| Message-ID | <t65Xc-8e7-11@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
gcc-7 warns about debug statements being left out here:
drivers/staging/bcm2835-audio/bcm2835-vchiq.c: In function 'bcm2835_audio_set_ctls':
drivers/staging/bcm2835-audio/bcm2835-vchiq.c:572:54: error: suggest braces around empty body in an 'else' statement [-Werror=empty-body]
It's better to use no_printk(), which has the added advantage of checking
the format strings.
Fixes: 23b028c871e1 ("staging: bcm2835-audio: initial staging submission")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
drivers/staging/bcm2835-audio/bcm2835-vchiq.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm2835-audio/bcm2835-vchiq.c b/drivers/staging/bcm2835-audio/bcm2835-vchiq.c
index e8fd9c79bcfc..b1f86240b32f 100644
--- a/drivers/staging/bcm2835-audio/bcm2835-vchiq.c
+++ b/drivers/staging/bcm2835-audio/bcm2835-vchiq.c
@@ -50,9 +50,9 @@
#define LOG_DBG( fmt, arg... ) pr_info( "%s:%d " fmt, __func__, __LINE__, ##arg)
#else
#define LOG_ERR( fmt, arg... ) pr_err( "%s:%d " fmt, __func__, __LINE__, ##arg)
-#define LOG_WARN( fmt, arg... )
-#define LOG_INFO( fmt, arg... )
-#define LOG_DBG( fmt, arg... )
+#define LOG_WARN( fmt, arg... ) no_printk(fmt, ##arg)
+#define LOG_INFO( fmt, arg... ) no_printk(fmt, ##arg)
+#define LOG_DBG( fmt, arg... ) no_printk(fmt, ##arg)
#endif
struct bcm2835_audio_instance {
--
2.9.0
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] staging: bcm2835-audio: fix empty-body warning Arnd Bergmann <arnd@arndb.de> - 2017-02-01 17:30 +0100
csiph-web