blob: 7dd983c3500138fca3c38bda742eb008409a0db1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Daniel Macke5779992010-03-04 19:46:13 +01002#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
Daniel Mack60ed2862011-05-18 11:28:39 +020012#define hwc_debug(fmt, args...) do { } while(0)
Daniel Macke5779992010-03-04 19:46:13 +010013#endif
14
15#endif /* __USBAUDIO_DEBUG_H */
16