diff options
author | Tülin İzer <tulinizer@gmail.com> | 2013-05-17 09:13:24 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-17 19:05:57 +0200 |
commit | fa86ad0b63846d35b6989cefe24e46301b94a9f3 (patch) | |
tree | 7f1d6aceee744cec85662dc8e36a861e2c3b5a4b /drivers/usb/core/devio.c | |
parent | usb: devio: Fixed warning: 'use <linux/uacces.h> instead <asm/uacces.h>' (diff) | |
download | linux-fa86ad0b63846d35b6989cefe24e46301b94a9f3.tar.xz linux-fa86ad0b63846d35b6989cefe24e46301b94a9f3.zip |
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>
Diffstat (limited to 'drivers/usb/core/devio.c')
-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 @@ #include "usb.h" #define USB_MAXBUS 64 -#define USB_DEVICE_MAX USB_MAXBUS * 128 +#define USB_DEVICE_MAX (USB_MAXBUS * 128) #define USB_SG_SIZE 16384 /* split-size for large txs */ /* Mutual exclusion for removal, open, and release */ |