Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Daniel Mack | e577999 | 2010-03-04 19:46:13 +0100 | [diff] [blame] | 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 |
Daniel Mack | 60ed286 | 2011-05-18 11:28:39 +0200 | [diff] [blame] | 12 | #define hwc_debug(fmt, args...) do { } while(0) |
Daniel Mack | e577999 | 2010-03-04 19:46:13 +0100 | [diff] [blame] | 13 | #endif |
| 14 | |
| 15 | #endif /* __USBAUDIO_DEBUG_H */ |
| 16 | |