Skip to content

Commit

Permalink
USB: STORAGE: ISD200 Fixed coding style issue "space required in for …
Browse files Browse the repository at this point in the history
…loop"

Fixed errors spaces required around the for loop '=' , ';' and '<'
in drivers/usb/storage/isd200.c

Signed-off-by: Jagdish Tirumala <t.jag587@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Jagdish Tirumala authored and Greg Kroah-Hartman committed Sep 20, 2018
1 parent ae8a2ca commit 1906f64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/usb/storage/isd200.c
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,7 @@ static int isd200_get_inquiry_data( struct us_data *us )
/* Fill in vendor identification fields */
src = (__be16 *)&id[ATA_ID_PROD];
dest = (__u16*)info->InquiryData.VendorId;
for (i=0;i<4;i++)
for (i = 0; i < 4; i++)
dest[i] = be16_to_cpu(src[i]);

src = (__be16 *)&id[ATA_ID_PROD + 8/2];
Expand Down

0 comments on commit 1906f64

Please sign in to comment.