Commit b63b1331 authored by Tejun Heo's avatar Tejun Heo Committed by Jeff Garzik

pata_it821x: use raw nbytes in check_atapi_dma

pata_it821x needs to look at raw request size in check_atapi_dma().
Signed-off-by: default avatarTejun Heo <htejun@gmail.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent aacda375
...@@ -564,7 +564,7 @@ static int it821x_check_atapi_dma(struct ata_queued_cmd *qc) ...@@ -564,7 +564,7 @@ static int it821x_check_atapi_dma(struct ata_queued_cmd *qc)
struct it821x_dev *itdev = ap->private_data; struct it821x_dev *itdev = ap->private_data;
/* Only use dma for transfers to/from the media. */ /* Only use dma for transfers to/from the media. */
if (qc->nbytes < 2048) if (ata_qc_raw_nbytes(qc) < 2048)
return -EOPNOTSUPP; return -EOPNOTSUPP;
/* No ATAPI DMA in smart mode */ /* No ATAPI DMA in smart mode */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment