Commit 0e78eccc authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Jens Axboe

xtensa/simdisk: fix compile error

Fixes: d004a5e7 ("block: remove __bio_kmap_atomic")
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 1e496938
......@@ -116,7 +116,7 @@ static blk_qc_t simdisk_make_request(struct request_queue *q, struct bio *bio)
simdisk_transfer(dev, sector, len, buffer,
bio_data_dir(bio) == WRITE);
sector += len;
kunmap_atomic(buffer)
kunmap_atomic(buffer);
}
bio_endio(bio);
......
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