Skip to content

Commit

Permalink
xtensa/simdisk: fix compile error
Browse files Browse the repository at this point in the history
Fixes: d004a5e ("block: remove __bio_kmap_atomic")
Signed-off-by: Christoph Hellwig <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
  • Loading branch information
Christoph Hellwig authored and axboe committed Nov 11, 2017
1 parent 1e49693 commit 0e78ecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/xtensa/platforms/iss/simdisk.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 0e78ecc

Please sign in to comment.