diff options
author | Tülin İzer <tulinizer@gmail.com> | 2013-05-17 03:13:24 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-17 13:05:57 -0400 |
commit | fa86ad0b63846d35b6989cefe24e46301b94a9f3 (patch) | |
tree | 7f1d6aceee744cec85662dc8e36a861e2c3b5a4b | |
parent | e6889b310eb997afe698fac9762203e11577af1e (diff) |
usb: devio: Fixed macro parenthesis error
This patch fixes error 'Macros with complex values should be enclosed in
parenthesis' in USB/devio.c
Signed-off-by: Tülin İzer <tulinizer@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/core/devio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/core/devio.c b/drivers/usb/core/devio.c index 9374937f13c0..009bc3f2fde4 100644 --- a/drivers/usb/core/devio.c +++ b/drivers/usb/core/devio.c | |||
@@ -56,7 +56,7 @@ | |||
56 | #include "usb.h" | 56 | #include "usb.h" |
57 | 57 | ||
58 | #define USB_MAXBUS 64 | 58 | #define USB_MAXBUS 64 |
59 | #define USB_DEVICE_MAX USB_MAXBUS * 128 | 59 | #define USB_DEVICE_MAX (USB_MAXBUS * 128) |
60 | #define USB_SG_SIZE 16384 /* split-size for large txs */ | 60 | #define USB_SG_SIZE 16384 /* split-size for large txs */ |
61 | 61 | ||
62 | /* Mutual exclusion for removal, open, and release */ | 62 | /* Mutual exclusion for removal, open, and release */ |