diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2010-01-18 10:21:48 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-01-19 12:52:33 +0300 |
commit | a298dc024c2b0b92d3889d61856117141d693b39 (patch) | |
tree | c4178b78ca62be30f6be62c0ef7b95f21126baea /drivers/ide/cs5535.c | |
parent | 23d874054663efaf18340dc554df1b935820cbab (diff) | |
download | linux-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/cs5535.c b/drivers/ide/cs5535.c index 740002b2f3e8..5059fafadf29 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; |