diff options
Diffstat (limited to 'drivers/usb/storage/debug.h')
| -rw-r--r-- | drivers/usb/storage/debug.h | 17 | 
1 files changed, 10 insertions, 7 deletions
diff --git a/drivers/usb/storage/debug.h b/drivers/usb/storage/debug.h index d4280e1541a..b1273f03e22 100644 --- a/drivers/usb/storage/debug.h +++ b/drivers/usb/storage/debug.h @@ -47,17 +47,20 @@  #define USB_STORAGE "usb-storage: "  #ifdef CONFIG_USB_STORAGE_DEBUG -void usb_stor_show_command(struct scsi_cmnd *srb); -void usb_stor_show_sense( unsigned char key, -		unsigned char asc, unsigned char ascq ); -__printf(1, 2) int usb_stor_dbg(const char *fmt, ...); +void usb_stor_show_command(const struct us_data *us, struct scsi_cmnd *srb); +void usb_stor_show_sense(const struct us_data *us, unsigned char key, +			 unsigned char asc, unsigned char ascq); +__printf(2, 3) int usb_stor_dbg(const struct us_data *us, +				const char *fmt, ...); -#define US_DEBUGP(fmt, ...)	usb_stor_dbg(fmt, ##__VA_ARGS__)  #define US_DEBUGPX(fmt, ...)	printk(fmt, ##__VA_ARGS__)  #define US_DEBUG(x)		x  #else -#define US_DEBUGP(fmt, ...)					\ -	do { if (0) printk(fmt, ##__VA_ARGS__); } while (0) +__printf(2, 3) +static inline int _usb_stor_dbg(const struct us_data *us, +				const char *fmt, ...) {return 1;} +#define usb_stor_dbg(us, fmt, ...)				\ +	do { if (0) _usb_stor_dbg(us, fmt, ##__VA_ARGS__); } while (0)  #define US_DEBUGPX(fmt, ...)					\  	do { if (0) printk(fmt, ##__VA_ARGS__); } while (0)  #define US_DEBUG(x)  |