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:
committed by
Greg Kroah-Hartman
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...) \
|
#define ohci_dbg_sw(ohci, next, size, format, arg...) \
|
||||||
do { \
|
do { \
|
||||||
if (next) { \
|
if (next != NULL) { \
|
||||||
unsigned s_len; \
|
unsigned s_len; \
|
||||||
s_len = scnprintf (*next, *size, format, ## arg ); \
|
s_len = scnprintf (*next, *size, format, ## arg ); \
|
||||||
*size -= s_len; *next += s_len; \
|
*size -= s_len; *next += s_len; \
|
||||||
|
Reference in New Issue
Block a user