LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] ALSA: have snd_BUG_ON() always refer to arguments
@ 2008-11-07  2:05 Mike Frysinger
  2008-11-07  6:22 ` Takashi Iwai
  0 siblings, 1 reply; 15+ messages in thread
From: Mike Frysinger @ 2008-11-07  2:05 UTC (permalink / raw)
  To: alsa-devel, Takashi Iwai, Jaroslav Kysela; +Cc: linux-kernel

The snd_BUG_ON() macro should always expand its argument even if we're
forcing it to false.  This kills off unused warnings that did not exist
before the snd_assert() -> snd_BUG_ON() conversion.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
 include/sound/core.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/sound/core.h b/include/sound/core.h
index 35424a9..87de9fc 100644
--- a/include/sound/core.h
+++ b/include/sound/core.h
@@ -387,7 +387,7 @@ void snd_verbose_printd(const char *file, int line, const char *format, ...)
 
 #define snd_printd(fmt, args...)	/* nothing */
 #define snd_BUG()			/* nothing */
-#define snd_BUG_ON(cond)	({/*(void)(cond);*/ 0;})  /* always false */
+#define snd_BUG_ON(cond)	((cond) && 0)  /* always false */
 
 #endif /* CONFIG_SND_DEBUG */
 
-- 
1.6.0.3


^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2008-11-07 10:03 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-11-07  2:05 [PATCH] ALSA: have snd_BUG_ON() always refer to arguments Mike Frysinger
2008-11-07  6:22 ` Takashi Iwai
2008-11-07  7:09   ` Mike Frysinger
2008-11-07  7:15     ` [alsa-devel] " Takashi Iwai
2008-11-07  7:29       ` Mike Frysinger
2008-11-07  7:36         ` Takashi Iwai
2008-11-07  7:56           ` Mike Frysinger
2008-11-07  7:38         ` Takashi Iwai
2008-11-07  7:57           ` Mike Frysinger
2008-11-07  8:03             ` Takashi Iwai
2008-11-07  8:05               ` Mike Frysinger
2008-11-07  8:22                 ` Takashi Iwai
2008-11-07  9:30                   ` Mike Frysinger
2008-11-07  9:56                     ` Takashi Iwai
2008-11-07 10:03                       ` Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).