Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Colin Ian King and committed by
Tejun Heo
273b542e dc03c0f9

+2 -2
+2 -2
drivers/ata/pata_atiixp.c
··· 183 183 * We must now look at the PIO mode situation. We may need to 184 184 * adjust the PIO mode to keep the timings acceptable 185 185 */ 186 - if (adev->dma_mode >= XFER_MW_DMA_2) 187 - wanted_pio = 4; 186 + if (adev->dma_mode >= XFER_MW_DMA_2) 187 + wanted_pio = 4; 188 188 else if (adev->dma_mode == XFER_MW_DMA_1) 189 189 wanted_pio = 3; 190 190 else if (adev->dma_mode == XFER_MW_DMA_0)