mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 14:41:39 +00:00
USB: ohci, fix oddball gcc warning
Some versions of GCC recently grew annoying warnings about constants. This gets rid of that warning from the OHCI driver. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
2f67cd5b1d
commit
bdd203a002
@ -74,7 +74,7 @@ urb_print (struct urb * urb, char * str, int small)
|
||||
|
||||
#define ohci_dbg_sw(ohci, next, size, format, arg...) \
|
||||
do { \
|
||||
if (next) { \
|
||||
if (next != NULL) { \
|
||||
unsigned s_len; \
|
||||
s_len = scnprintf (*next, *size, format, ## arg ); \
|
||||
*size -= s_len; *next += s_len; \
|
||||
|
Loading…
Reference in New Issue
Block a user