summaryrefslogtreecommitdiff
path: root/drivers/ide/cs5535.c
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2010-01-18 07:21:48 (GMT)
committerDavid S. Miller <davem@davemloft.net>2010-01-19 09:52:33 (GMT)
commita298dc024c2b0b92d3889d61856117141d693b39 (patch)
treec4178b78ca62be30f6be62c0ef7b95f21126baea /drivers/ide/cs5535.c
parent23d874054663efaf18340dc554df1b935820cbab (diff)
downloadlinux-fsl-qoriq-a298dc024c2b0b92d3889d61856117141d693b39.tar.xz
cs5535: use ->pio_mode value to determine pair device speed
Use the current PIO mode value instead of the physical maximum one of the pair device on the port to determine PIO commmand timings used for both devices on the port. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/ide/cs5535.c')
-rw-r--r--drivers/ide/cs5535.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/cs5535.c b/drivers/ide/cs5535.c
index 740002b..5059faf 100644
--- a/drivers/ide/cs5535.c
+++ b/drivers/ide/cs5535.c
@@ -86,7 +86,7 @@ static void cs5535_set_speed(ide_drive_t *drive, const u8 speed)
cmd = pioa = speed - XFER_PIO_0;
if (pair) {
- u8 piob = ide_get_best_pio_mode(pair, 255, 4);
+ u8 piob = pair->pio_mode - XFER_PIO_0;
if (piob < cmd)
cmd = piob;