diff options
Diffstat (limited to 'include/sound/core.h')
-rw-r--r-- | include/sound/core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sound/core.h b/include/sound/core.h index 7e5589472681..6fa4c7b1970a 100644 --- a/include/sound/core.h +++ b/include/sound/core.h | |||
@@ -390,11 +390,11 @@ void snd_verbose_printd(const char *file, int line, const char *format, ...) | |||
390 | 390 | ||
391 | #define snd_printd(fmt, args...) do { } while (0) | 391 | #define snd_printd(fmt, args...) do { } while (0) |
392 | #define snd_BUG() do { } while (0) | 392 | #define snd_BUG() do { } while (0) |
393 | static inline int __snd_bug_on(void) | 393 | static inline int __snd_bug_on(int cond) |
394 | { | 394 | { |
395 | return 0; | 395 | return 0; |
396 | } | 396 | } |
397 | #define snd_BUG_ON(cond) __snd_bug_on() /* always false */ | 397 | #define snd_BUG_ON(cond) __snd_bug_on(0 && (cond)) /* always false */ |
398 | 398 | ||
399 | #endif /* CONFIG_SND_DEBUG */ | 399 | #endif /* CONFIG_SND_DEBUG */ |
400 | 400 | ||