Skip to content

Commit

Permalink
Fix the SD driver
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatsItForTheOtherOne committed Oct 9, 2023
1 parent 5d221ac commit 191b3d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/block/rvl-stsd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1769,7 +1769,7 @@ static int stsd_do_request(struct stsd_host *host, struct request *req)
nr_blocks = blk_rq_cur_sectors(req);

error = stsd_do_block_transfer(host, write,
start, req->buffer, nr_blocks);
start, bio_data(req->bio), nr_blocks);
if (error)
DBG("%s: error=%d (%08x), start=%lu, \n", __func__,
error, error, start);
Expand Down

0 comments on commit 191b3d2

Please sign in to comment.