提交 496cda8e 编写于 作者: C Cong Wang 提交者: Cong Wang

ata: remove the second argument of k[un]map_atomic()

Acked-by: NJeff Garzik <jgarzik@redhat.com>
Signed-off-by: NCong Wang <amwang@redhat.com>
上级 f0dfc0b0
......@@ -720,13 +720,13 @@ static void ata_pio_sector(struct ata_queued_cmd *qc)
/* FIXME: use a bounce buffer */
local_irq_save(flags);
buf = kmap_atomic(page, KM_IRQ0);
buf = kmap_atomic(page);
/* do the actual data transfer */
ap->ops->sff_data_xfer(qc->dev, buf + offset, qc->sect_size,
do_write);
kunmap_atomic(buf, KM_IRQ0);
kunmap_atomic(buf);
local_irq_restore(flags);
} else {
buf = page_address(page);
......@@ -865,13 +865,13 @@ static int __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
/* FIXME: use bounce buffer */
local_irq_save(flags);
buf = kmap_atomic(page, KM_IRQ0);
buf = kmap_atomic(page);
/* do the actual data transfer */
consumed = ap->ops->sff_data_xfer(dev, buf + offset,
count, rw);
kunmap_atomic(buf, KM_IRQ0);
kunmap_atomic(buf);
local_irq_restore(flags);
} else {
buf = page_address(page);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册