drivers: usb: storage: cypress_atacb.c: trivial checkpatch fixes
authorBas Peters <baspeters93@gmail.com>
Sat, 7 Feb 2015 22:42:43 +0000 (23:42 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Mar 2015 16:03:06 +0000 (17:03 +0100)
Fixes errors thrown by checkpatch over a space issue and the
incorrect indentation of a switch statement.

Signed-off-by: Bas Peters <baspeters93@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/storage/cypress_atacb.c

index 8514a2d82b72a2404420cd813f6aebff08e19f57..b3466d1395f20f7eae934d3bebb1f38b8800c230 100644 (file)
@@ -96,13 +96,13 @@ static void cypress_atacb_passthrough(struct scsi_cmnd *srb, struct us_data *us)
        if (save_cmnd[1] >> 5) /* MULTIPLE_COUNT */
                goto invalid_fld;
        /* check protocol */
-       switch((save_cmnd[1] >> 1) & 0xf) {
-               case 3: /*no DATA */
-               case 4: /* PIO in */
-               case 5: /* PIO out */
-                       break;
-               default:
-                       goto invalid_fld;
+       switch ((save_cmnd[1] >> 1) & 0xf) {
+       case 3: /*no DATA */
+       case 4: /* PIO in */
+       case 5: /* PIO out */
+               break;
+       default:
+               goto invalid_fld;
        }
 
        /* first build the ATACB command */
@@ -132,8 +132,7 @@ static void cypress_atacb_passthrough(struct scsi_cmnd *srb, struct us_data *us)
                                        || save_cmnd[11])
                                goto invalid_fld;
                }
-       }
-       else { /* ATA12 */
+       } else { /* ATA12 */
                srb->cmnd[ 6] = save_cmnd[3]; /* features */
                srb->cmnd[ 7] = save_cmnd[4]; /* sector count */
                srb->cmnd[ 8] = save_cmnd[5]; /* lba low */
This page took 0.024924 seconds and 5 git commands to generate.