[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1428799881-20424-1-git-send-email-chasemetzger15@gmail.com>
Date: Sat, 11 Apr 2015 17:51:21 -0700
From: Chase Metzger <chasemetzger15@...il.com>
To: gregkh@...uxfoundation.org
Cc: stern@...land.harvard.edu, dan.j.williams@...el.com,
antoine.tenart@...e-electrons.com, pmladek@...e.cz,
rafael.j.wysocki@...el.com, sergei.shtylyov@...entembedded.com,
linux-usb@...r.kernel.org, linux-kernel@...r.kernel.org,
Chase Metzger <chasemetzger15@...il.com>
Subject: [PATCH] drivers/usb/core: hcd.c: Removed BitTime space warnings
Removed BitTime macro space warnings generated by checkpatch.pl.
Signed-off-by: Chase Metzger <chasemetzger15@...il.com>
---
drivers/usb/core/hcd.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c
index 601476c7..299ff0d 100644
--- a/drivers/usb/core/hcd.c
+++ b/drivers/usb/core/hcd.c
@@ -1116,18 +1116,18 @@ long usb_calc_bus_time(int speed, int is_input, int isoc, int bytecount)
switch (speed) {
case USB_SPEED_LOW: /* INTR only */
if (is_input) {
- tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L;
+ tmp = (67667L * (31L + 10L * BitTime(bytecount))) / 1000L;
return 64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp;
} else {
- tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L;
+ tmp = (66700L * (31L + 10L * BitTime(bytecount))) / 1000L;
return 64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp;
}
case USB_SPEED_FULL: /* ISOC or INTR */
if (isoc) {
- tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
+ tmp = (8354L * (31L + 10L * BitTime(bytecount))) / 1000L;
return ((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp;
} else {
- tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
+ tmp = (8354L * (31L + 10L * BitTime(bytecount))) / 1000L;
return 9107L + BW_HOST_DELAY + tmp;
}
case USB_SPEED_HIGH: /* ISOC or INTR */
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists