]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - drivers/usb/storage/protocol.c
Merge tags 'modules-next-for-linus' and 'virtio-next-for-linus' of git://git.kernel...
[karo-tx-linux.git] / drivers / usb / storage / protocol.c
index 82dd834709c78f7627b82a53d5e268fb006744a2..5dfb4c36a1b0a2aeb55dd4863c33fae132d2ce7b 100644 (file)
@@ -66,7 +66,7 @@ void usb_stor_pad12_command(struct scsi_cmnd *srb, struct us_data *us)
         * NOTE: This only works because a scsi_cmnd struct field contains
         * a unsigned char cmnd[16], so we know we have storage available
         */
-       for (; srb->cmd_len<12; srb->cmd_len++)
+       for (; srb->cmd_len < 12; srb->cmd_len++)
                srb->cmnd[srb->cmd_len] = 0;
 
        /* send the command to the transport layer */
@@ -76,14 +76,14 @@ void usb_stor_pad12_command(struct scsi_cmnd *srb, struct us_data *us)
 void usb_stor_ufi_command(struct scsi_cmnd *srb, struct us_data *us)
 {
        /* fix some commands -- this is a form of mode translation
-        * UFI devices only accept 12 byte long commands 
+        * UFI devices only accept 12 byte long commands
         *
         * NOTE: This only works because a scsi_cmnd struct field contains
         * a unsigned char cmnd[16], so we know we have storage available
         */
 
        /* Pad the ATAPI command with zeros */
-       for (; srb->cmd_len<12; srb->cmd_len++)
+       for (; srb->cmd_len < 12; srb->cmd_len++)
                srb->cmnd[srb->cmd_len] = 0;
 
        /* set command length to 12 bytes (this affects the transport layer) */