diff options
author | Geyslan G. Bem <geyslan@gmail.com> | 2016-01-25 22:45:13 -0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-03 13:44:05 -0800 |
commit | 189b8ff0daa1b12befddf03b009d55a702aeecb2 (patch) | |
tree | 060d00ec12d819c4e858ee454dafd8d9f833b428 | |
parent | 77d6554d1b40be5c522b0dc0dc0df5e164150753 (diff) | |
download | linux-189b8ff0daa1b12befddf03b009d55a702aeecb2.tar.gz linux-189b8ff0daa1b12befddf03b009d55a702aeecb2.tar.bz2 linux-189b8ff0daa1b12befddf03b009d55a702aeecb2.zip |
usb: host: ehci-sched: add spaces around operators
This patch adds spaces around operators.
Tested by compilation only.
Caught by checkpatch.
Signed-off-by: Geyslan G. Bem <geyslan@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/host/ehci-sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-sched.c b/drivers/usb/host/ehci-sched.c index b28ec83361e1..b8cc9d4fcb66 100644 --- a/drivers/usb/host/ehci-sched.c +++ b/drivers/usb/host/ehci-sched.c @@ -346,7 +346,7 @@ max_tt_usecs[] = { 125, 125, 125, 125, 125, 125, 30, 0 }; static inline void carryover_tt_bandwidth(unsigned short tt_usecs[8]) { int i; - for (i=0; i<7; i++) { + for (i = 0; i < 7; i++) { if (max_tt_usecs[i] < tt_usecs[i]) { tt_usecs[i+1] += tt_usecs[i] - max_tt_usecs[i]; tt_usecs[i] = max_tt_usecs[i]; |