diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-04 11:24:06 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-04 11:24:06 -0500 |
commit | 4c10c937cc2eb197db565392db91d429eec71176 (patch) | |
tree | 02d7f15b314441e832f48f0f882882042361396c /drivers/ide/jmicron.c | |
parent | 9bb676966aa85e56af00b353387d3c274a26e480 (diff) | |
parent | 950f564b707ca1b1c5bb94cd1e7d2a0702bfcadc (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-next-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-next-2.6: (49 commits)
drivers/ide: Fix continuation line formats
ide: fixed section mismatch warning in cmd640.c
ide: ide_timing_compute() fixup
ide: make ide_get_best_pio_mode() static
via82cxxx: use ->pio_mode value to determine pair device speed
tx493xide: use ->pio_mode value to determine pair device speed
siimage: use ->pio_mode value to determine pair device speed
palm_bk3710: use ->pio_mode value to determine pair device speed
it821x: use ->pio_mode value to determine pair device speed
cs5536: use ->pio_mode value to determine pair device speed
cs5535: use ->pio_mode value to determine pair device speed
cmd64x: fix handling of address setup timings
amd74xx: use ->pio_mode value to determine pair device speed
alim15x3: fix handling of UDMA enable bit
alim15x3: fix handling of DMA timings
alim15x3: fix handling of command timings
alim15x3: fix handling of address setup timings
ide-timings: use ->pio_mode value to determine fastest PIO speed
ide: change ->set_dma_mode method parameters
ide: change ->set_pio_mode method parameters
...
Diffstat (limited to 'drivers/ide/jmicron.c')
-rw-r--r-- | drivers/ide/jmicron.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ide/jmicron.c b/drivers/ide/jmicron.c index bf2be6431b20..74c2c4a6d909 100644 --- a/drivers/ide/jmicron.c +++ b/drivers/ide/jmicron.c | |||
@@ -80,19 +80,19 @@ static u8 jmicron_cable_detect(ide_hwif_t *hwif) | |||
80 | return ATA_CBL_PATA80; | 80 | return ATA_CBL_PATA80; |
81 | } | 81 | } |
82 | 82 | ||
83 | static void jmicron_set_pio_mode(ide_drive_t *drive, const u8 pio) | 83 | static void jmicron_set_pio_mode(ide_hwif_t *hwif, ide_drive_t *drive) |
84 | { | 84 | { |
85 | } | 85 | } |
86 | 86 | ||
87 | /** | 87 | /** |
88 | * jmicron_set_dma_mode - set host controller for DMA mode | 88 | * jmicron_set_dma_mode - set host controller for DMA mode |
89 | * @hwif: port | ||
89 | * @drive: drive | 90 | * @drive: drive |
90 | * @mode: DMA mode | ||
91 | * | 91 | * |
92 | * As the JMicron snoops for timings we don't need to do anything here. | 92 | * As the JMicron snoops for timings we don't need to do anything here. |
93 | */ | 93 | */ |
94 | 94 | ||
95 | static void jmicron_set_dma_mode(ide_drive_t *drive, const u8 mode) | 95 | static void jmicron_set_dma_mode(ide_hwif_t *hwif, ide_drive_t *drive) |
96 | { | 96 | { |
97 | } | 97 | } |
98 | 98 | ||