projects
/
platform
/
adaptation
/
renesas_rcar
/
renesas_kernel.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge tag 'sound-3.11' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound
[platform/adaptation/renesas_rcar/renesas_kernel.git]
/
sound
/
usb
/
debug.h
1
#ifndef __USBAUDIO_DEBUG_H
2
#define __USBAUDIO_DEBUG_H
3
4
/*
5
* h/w constraints
6
*/
7
8
#ifdef HW_CONST_DEBUG
9
#define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
10
#else
11
#define hwc_debug(fmt, args...) do { } while(0)
12
#endif
13
14
#endif /* __USBAUDIO_DEBUG_H */
15