diff options
Diffstat (limited to 'common/usb.c')
| -rw-r--r-- | common/usb.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/usb.c b/common/usb.c index a401c0919..a5f9e9f5b 100644 --- a/common/usb.c +++ b/common/usb.c @@ -63,7 +63,7 @@  #ifdef	USB_DEBUG  #define	USB_PRINTF(fmt, args...)	printf(fmt , ##args)  #else -#define USB_PRINTF(fmt, args...) +static inline void USB_PRINTF(const char *fmt, ...) {}  #endif  #define USB_BUFSIZ	512 @@ -970,7 +970,7 @@ void usb_scan_devices(void)  #ifdef	USB_HUB_DEBUG  #define	USB_HUB_PRINTF(fmt, args...)	printf(fmt , ##args)  #else -#define USB_HUB_PRINTF(fmt, args...) +static inline void USB_HUB_PRINTF(const char *fmt, ...) {}  #endif |