diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2007-11-02 08:59:37 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2007-11-02 08:59:37 +0000 |
commit | bf78b6357d490804d926a05a194915fe176d3118 (patch) | |
tree | a6839dac9e99bc9e0770991b4070f95b267ab9e9 /target/linux/adm5120 | |
parent | 38db1b4adcf4500fbaae6726d01948455ca11a17 (diff) | |
download | upstream-bf78b6357d490804d926a05a194915fe176d3118.tar.gz upstream-bf78b6357d490804d926a05a194915fe176d3118.tar.bz2 upstream-bf78b6357d490804d926a05a194915fe176d3118.zip |
fix USB driver to compile even if USB_DEBUG is disabled
SVN-Revision: 9483
Diffstat (limited to 'target/linux/adm5120')
-rw-r--r-- | target/linux/adm5120/files/drivers/usb/host/adm5120-dbg.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/target/linux/adm5120/files/drivers/usb/host/adm5120-dbg.c b/target/linux/adm5120/files/drivers/usb/host/adm5120-dbg.c index bb83450eb5..7a0c73cc5f 100644 --- a/target/linux/adm5120/files/drivers/usb/host/adm5120-dbg.c +++ b/target/linux/adm5120/files/drivers/usb/host/adm5120-dbg.c @@ -9,8 +9,6 @@ /*-------------------------------------------------------------------------*/ -#ifdef DEBUG - static inline char *ed_typestring(int ed_type) { switch (ed_type) { @@ -72,6 +70,8 @@ static inline char *td_togglestring(u32 info) return "?TOGGLE"; } +#ifdef DEBUG + /* debug| print the main components of an URB * small: 0) header + data packets 1) just header */ @@ -377,6 +377,8 @@ static inline void admhc_dump_up(const struct admhcd *ahcd, const char *label, const struct urb_priv *up) {} static inline void admhc_dump_ed(const struct admhcd *ahcd, const char *label, const struct ed *ed, int verbose) {} +static inline void admhc_dump_td(const struct admhcd *ahcd, const char *label, + const struct td *td) {} static inline void admhc_dump(struct admhcd *ahcd, int verbose) {} #undef ADMHC_VERBOSE_DEBUG |