diff options
author | Alan Cox <alan@redhat.com> | 2008-07-22 06:15:08 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-22 16:03:26 -0400 |
commit | 0487b583f268ea43ededd7897dbf519bdcb395ee (patch) | |
tree | a9704913e693260ed2605c073ab8244c82f1acb7 /drivers/usb | |
parent | 9660ea36bdcd4c33174e912a3e649c048d22a3d6 (diff) |
tty-usb-spcp8x5: Minor coding style
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/serial/spcp8x5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/serial/spcp8x5.c b/drivers/usb/serial/spcp8x5.c index 58495f5cca1f..283cf6b36b2c 100644 --- a/drivers/usb/serial/spcp8x5.c +++ b/drivers/usb/serial/spcp8x5.c | |||
@@ -208,7 +208,7 @@ static inline unsigned int ringbuf_avail_data(struct ringbuf *pb) | |||
208 | { | 208 | { |
209 | if (pb == NULL) | 209 | if (pb == NULL) |
210 | return 0; | 210 | return 0; |
211 | return ((pb->buf_size + pb->buf_put - pb->buf_get) % pb->buf_size); | 211 | return (pb->buf_size + pb->buf_put - pb->buf_get) % pb->buf_size; |
212 | } | 212 | } |
213 | 213 | ||
214 | /* get the number of space in the pipo */ | 214 | /* get the number of space in the pipo */ |
@@ -216,7 +216,7 @@ static inline unsigned int ringbuf_avail_space(struct ringbuf *pb) | |||
216 | { | 216 | { |
217 | if (pb == NULL) | 217 | if (pb == NULL) |
218 | return 0; | 218 | return 0; |
219 | return ((pb->buf_size + pb->buf_get - pb->buf_put - 1) % pb->buf_size); | 219 | return (pb->buf_size + pb->buf_get - pb->buf_put - 1) % pb->buf_size; |
220 | } | 220 | } |
221 | 221 | ||
222 | /* put count data into pipo */ | 222 | /* put count data into pipo */ |