Commit 496cda8e authored by Cong Wang's avatar Cong Wang Committed by Cong Wang

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

Acked-by: default avatarJeff Garzik <jgarzik@redhat.com>
Signed-off-by: default avatarCong Wang <amwang@redhat.com>
parent 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%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment