staging: rts5208: rtsx.c: Multiple assignments
authorWayne Porter <wporter82@gmail.com>
Tue, 11 Oct 2016 21:56:47 +0000 (21:56 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 16 Oct 2016 08:27:05 +0000 (10:27 +0200)
Fix multiple assignments found by checkpatch

Signed-off-by: Wayne Porter <wporter82@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rts5208/rtsx.c

index 5d10182..c88200b 100644 (file)
@@ -107,8 +107,10 @@ static int slave_configure(struct scsi_device *sdev)
         * the actual value or the modified one, depending on where the
         * data comes from.
         */
-       if (sdev->scsi_level < SCSI_2)
-               sdev->scsi_level = sdev->sdev_target->scsi_level = SCSI_2;
+       if (sdev->scsi_level < SCSI_2) {
+               sdev->scsi_level = SCSI_2;
+               sdev->sdev_target->scsi_level = SCSI_2;
+       }
 
        return 0;
 }