1
0
Fork 0

xtensa/simdisk: fix compile error

Fixes: d004a5e7d4 ("block: remove __bio_kmap_atomic")
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
zero-colors
Christoph Hellwig 2017-11-10 09:17:50 +01:00 committed by Jens Axboe
parent 1e496938b6
commit 0e78eccc55
1 changed files with 1 additions and 1 deletions

View File

@ -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);