diff options
author | Colin Ian King <colin.king@canonical.com> | 2016-05-16 12:35:03 +0100 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2016-05-27 11:22:46 -0400 |
commit | 273b542e7aa7d692ef7fddf63de9906e6827ccc3 (patch) | |
tree | f069991a3de7a66adacd1b186ea4c4d000bca815 /drivers/ata | |
parent | dc03c0f9d12d85286d5e3623aa96d5c2a271b8e6 (diff) | |
download | linux-273b542e7aa7d692ef7fddf63de9906e6827ccc3.tar.bz2 |
pata_atiixp: fix trivial indentation misalignment on if statement
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>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/pata_atiixp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/pata_atiixp.c b/drivers/ata/pata_atiixp.c index 970f7767e5fd..49d705c9f0f7 100644 --- a/drivers/ata/pata_atiixp.c +++ b/drivers/ata/pata_atiixp.c @@ -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) |