aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/core/devio.c
diff options
context:
space:
mode:
authorTülin İzer <tulinizer@gmail.com>2013-05-17 10:13:24 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-05-17 10:05:57 -0700
commitfa86ad0b63846d35b6989cefe24e46301b94a9f3 (patch)
tree7f1d6aceee744cec85662dc8e36a861e2c3b5a4b /drivers/usb/core/devio.c
parentusb: devio: Fixed warning: 'use <linux/uacces.h> instead <asm/uacces.h>' (diff)
downloadlinux-dev-fa86ad0b63846d35b6989cefe24e46301b94a9f3.tar.xz
linux-dev-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.c2
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 */