pata_atiixp: fix trivial indentation misalignment on if statement
authorColin Ian King <colin.king@canonical.com>
Mon, 16 May 2016 11:35:03 +0000 (12:35 +0100)
committerTejun Heo <tj@kernel.org>
Fri, 27 May 2016 15:22:46 +0000 (11:22 -0400)
Remove extraneous space on if statement and on the following line,
trivial fix, no functional change

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
drivers/ata/pata_atiixp.c

index 970f776..49d705c 100644 (file)
@@ -183,8 +183,8 @@ static void atiixp_set_dmamode(struct ata_port *ap, struct ata_device *adev)
         *      We must now look at the PIO mode situation. We may need to
         *      adjust the PIO mode to keep the timings acceptable
         */
-        if (adev->dma_mode >= XFER_MW_DMA_2)
-               wanted_pio = 4;
+       if (adev->dma_mode >= XFER_MW_DMA_2)
+               wanted_pio = 4;
        else if (adev->dma_mode == XFER_MW_DMA_1)
                wanted_pio = 3;
        else if (adev->dma_mode == XFER_MW_DMA_0)