summaryrefslogtreecommitdiff
path: root/drivers/staging/rts5208
diff options
context:
space:
mode:
authorShaun Ren <shaun.ren@linux.com>2016-02-15 18:58:50 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-02-20 23:35:42 (GMT)
commit010c7d2ffb548a4cbbdec46b9a0ee696f7be3f59 (patch)
tree7ac526c98d973b77f57b045010d36713ea56b5d2 /drivers/staging/rts5208
parent53374ad2036cdcd370d6588522e7f3a1c7f2b07f (diff)
downloadlinux-010c7d2ffb548a4cbbdec46b9a0ee696f7be3f59.tar.xz
Staging: rts5208: rtsx_transport.c: Add spaces around -
This patch fixes the following styling issue in rtsx_transport.c as reported by checkpatch.pl: CHECK: spaces preferred around that '-' (ctx:VxV) Signed-off-by: Shaun Ren <shaun.ren@linux.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rts5208')
-rw-r--r--drivers/staging/rts5208/rtsx_transport.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rts5208/rtsx_transport.c b/drivers/staging/rts5208/rtsx_transport.c
index 54e2027..6d2420f 100644
--- a/drivers/staging/rts5208/rtsx_transport.c
+++ b/drivers/staging/rts5208/rtsx_transport.c
@@ -86,8 +86,8 @@ unsigned int rtsx_stor_access_xfer_buf(unsigned char *buffer,
while (cnt < buflen && *index < scsi_sg_count(srb)) {
struct page *page = sg_page(sg) +
((sg->offset + *offset) >> PAGE_SHIFT);
- unsigned int poff =
- (sg->offset + *offset) & (PAGE_SIZE-1);
+ unsigned int poff = (sg->offset + *offset) &
+ (PAGE_SIZE - 1);
unsigned int sglen = sg->length - *offset;
if (sglen > buflen - cnt) {