Commit a509538d4fb4f99cdf0a095213d57cc3b2347615

Authored by Sergei Shtylyov
Committed by Bartlomiej Zolnierkiewicz
1 parent 71bfc7a7c7

ide-iops: fix odd-length ATAPI PIO transfers

Commit 9567b349f7e7dd7e2483db99ee8e4a6fe0caca38 (ide: merge ->atapi_*put_bytes
and ->ata_*put_data methods) introduced a regression  WRT the odd-length ATAPI
PIO transfers -- the final word didn't get written (causing command timeouts).

Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

drivers/ide/ide-iops.c
... ... @@ -315,6 +315,8 @@
315 315 u8 io_32bit = drive->io_32bit;
316 316 u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
317 317  
  318 + len++;
  319 +
318 320 if (io_32bit) {
319 321 unsigned long uninitialized_var(flags);
320 322