Commit 3ee86dcdd273aa91cb9b4fe1e3d4f69035750a12
1 parent
b58602a4ba
Exists in
master
and in
39 other branches
tx493x: fix indentation
Trivial CodingStyle fixup for tx4938ide and tx4939ide drivers. Acked-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Acked-by: Sergei Shtyltov <sshtylyov@ru.mvista.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Showing 2 changed files with 26 additions and 26 deletions Side-by-side Diff
drivers/ide/tx4938ide.c
... | ... | @@ -216,16 +216,16 @@ |
216 | 216 | #endif /* __BIG_ENDIAN */ |
217 | 217 | |
218 | 218 | static const struct ide_port_ops tx4938ide_port_ops = { |
219 | - .set_pio_mode = tx4938ide_set_pio_mode, | |
219 | + .set_pio_mode = tx4938ide_set_pio_mode, | |
220 | 220 | }; |
221 | 221 | |
222 | 222 | static const struct ide_port_info tx4938ide_port_info __initdata = { |
223 | - .port_ops = &tx4938ide_port_ops, | |
223 | + .port_ops = &tx4938ide_port_ops, | |
224 | 224 | #ifdef __BIG_ENDIAN |
225 | - .tp_ops = &tx4938ide_tp_ops, | |
225 | + .tp_ops = &tx4938ide_tp_ops, | |
226 | 226 | #endif |
227 | - .host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA, | |
228 | - .pio_mask = ATA_PIO5, | |
227 | + .host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA, | |
228 | + .pio_mask = ATA_PIO5, | |
229 | 229 | }; |
230 | 230 | |
231 | 231 | static int __init tx4938ide_probe(struct platform_device *pdev) |
drivers/ide/tx4939ide.c
... | ... | @@ -623,33 +623,33 @@ |
623 | 623 | #endif /* __LITTLE_ENDIAN */ |
624 | 624 | |
625 | 625 | static const struct ide_port_ops tx4939ide_port_ops = { |
626 | - .set_pio_mode = tx4939ide_set_pio_mode, | |
627 | - .set_dma_mode = tx4939ide_set_dma_mode, | |
628 | - .clear_irq = tx4939ide_clear_irq, | |
629 | - .cable_detect = tx4939ide_cable_detect, | |
626 | + .set_pio_mode = tx4939ide_set_pio_mode, | |
627 | + .set_dma_mode = tx4939ide_set_dma_mode, | |
628 | + .clear_irq = tx4939ide_clear_irq, | |
629 | + .cable_detect = tx4939ide_cable_detect, | |
630 | 630 | }; |
631 | 631 | |
632 | 632 | static const struct ide_dma_ops tx4939ide_dma_ops = { |
633 | - .dma_host_set = tx4939ide_dma_host_set, | |
634 | - .dma_setup = tx4939ide_dma_setup, | |
635 | - .dma_exec_cmd = ide_dma_exec_cmd, | |
636 | - .dma_start = ide_dma_start, | |
637 | - .dma_end = tx4939ide_dma_end, | |
638 | - .dma_test_irq = tx4939ide_dma_test_irq, | |
639 | - .dma_lost_irq = ide_dma_lost_irq, | |
640 | - .dma_timeout = ide_dma_timeout, | |
633 | + .dma_host_set = tx4939ide_dma_host_set, | |
634 | + .dma_setup = tx4939ide_dma_setup, | |
635 | + .dma_exec_cmd = ide_dma_exec_cmd, | |
636 | + .dma_start = ide_dma_start, | |
637 | + .dma_end = tx4939ide_dma_end, | |
638 | + .dma_test_irq = tx4939ide_dma_test_irq, | |
639 | + .dma_lost_irq = ide_dma_lost_irq, | |
640 | + .dma_timeout = ide_dma_timeout, | |
641 | 641 | }; |
642 | 642 | |
643 | 643 | static const struct ide_port_info tx4939ide_port_info __initdata = { |
644 | - .init_hwif = tx4939ide_init_hwif, | |
645 | - .init_dma = tx4939ide_init_dma, | |
646 | - .port_ops = &tx4939ide_port_ops, | |
647 | - .dma_ops = &tx4939ide_dma_ops, | |
648 | - .tp_ops = &tx4939ide_tp_ops, | |
649 | - .host_flags = IDE_HFLAG_MMIO, | |
650 | - .pio_mask = ATA_PIO4, | |
651 | - .mwdma_mask = ATA_MWDMA2, | |
652 | - .udma_mask = ATA_UDMA5, | |
644 | + .init_hwif = tx4939ide_init_hwif, | |
645 | + .init_dma = tx4939ide_init_dma, | |
646 | + .port_ops = &tx4939ide_port_ops, | |
647 | + .dma_ops = &tx4939ide_dma_ops, | |
648 | + .tp_ops = &tx4939ide_tp_ops, | |
649 | + .host_flags = IDE_HFLAG_MMIO, | |
650 | + .pio_mask = ATA_PIO4, | |
651 | + .mwdma_mask = ATA_MWDMA2, | |
652 | + .udma_mask = ATA_UDMA5, | |
653 | 653 | }; |
654 | 654 | |
655 | 655 | static int __init tx4939ide_probe(struct platform_device *pdev) |