diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/sound/core.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/sound/core.h b/include/sound/core.h index 35424a971b7a..1508c4ec1ba9 100644 --- a/include/sound/core.h +++ b/include/sound/core.h | |||
| @@ -385,9 +385,13 @@ void snd_verbose_printd(const char *file, int line, const char *format, ...) | |||
| 385 | 385 | ||
| 386 | #else /* !CONFIG_SND_DEBUG */ | 386 | #else /* !CONFIG_SND_DEBUG */ |
| 387 | 387 | ||
| 388 | #define snd_printd(fmt, args...) /* nothing */ | 388 | #define snd_printd(fmt, args...) do { } while (0) |
| 389 | #define snd_BUG() /* nothing */ | 389 | #define snd_BUG() do { } while (0) |
| 390 | #define snd_BUG_ON(cond) ({/*(void)(cond);*/ 0;}) /* always false */ | 390 | static inline int __snd_bug_on(void) |
| 391 | { | ||
| 392 | return 0; | ||
| 393 | } | ||
| 394 | #define snd_BUG_ON(cond) __snd_bug_on() /* always false */ | ||
| 391 | 395 | ||
| 392 | #endif /* CONFIG_SND_DEBUG */ | 396 | #endif /* CONFIG_SND_DEBUG */ |
| 393 | 397 | ||
