blob: 7dd983c3500138fca3c38bda742eb008409a0db1 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __USBAUDIO_DEBUG_H
3#define __USBAUDIO_DEBUG_H
4
5/*
6 * h/w constraints
7 */
8
9#ifdef HW_CONST_DEBUG
10#define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
11#else
12#define hwc_debug(fmt, args...) do { } while(0)
13#endif
14
15#endif /* __USBAUDIO_DEBUG_H */
16