diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2010-01-19 04:44:41 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-01-19 04:44:41 -0500 |
commit | e085b3cae85af47eb0a3eda3186bd898310fb322 (patch) | |
tree | 7f7fea27f1398558a63e58b2f52347ae93383bac /drivers/ide/at91_ide.c | |
parent | 3fccaa192b9501e79a57e02e62b6bf420d2b461e (diff) |
ide: change ->set_pio_mode method parameters
Change ->set_pio_mode method parameters to match ->set_piomode method
used in struct ata_port_operations.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/ide/at91_ide.c')
-rw-r--r-- | drivers/ide/at91_ide.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/ide/at91_ide.c b/drivers/ide/at91_ide.c index 248219a89a68..000a78e5246c 100644 --- a/drivers/ide/at91_ide.c +++ b/drivers/ide/at91_ide.c | |||
@@ -172,11 +172,12 @@ static void at91_ide_output_data(ide_drive_t *drive, struct ide_cmd *cmd, | |||
172 | leave_16bit(chipselect, mode); | 172 | leave_16bit(chipselect, mode); |
173 | } | 173 | } |
174 | 174 | ||
175 | static void at91_ide_set_pio_mode(ide_drive_t *drive, const u8 pio) | 175 | static void at91_ide_set_pio_mode(ide_hwif_t *hwif, ide_drive_t *drive) |
176 | { | 176 | { |
177 | struct ide_timing *timing; | 177 | struct ide_timing *timing; |
178 | u8 chipselect = drive->hwif->select_data; | 178 | u8 chipselect = hwif->select_data; |
179 | int use_iordy = 0; | 179 | int use_iordy = 0; |
180 | const u8 pio = drive->pio_mode - XFER_PIO_0; | ||
180 | 181 | ||
181 | pdbg("chipselect %u pio %u\n", chipselect, pio); | 182 | pdbg("chipselect %u pio %u\n", chipselect, pio); |
182 | 183 | ||