Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5214e33c authored by Fabian Frederick's avatar Fabian Frederick Committed by Jens Axboe
Browse files

block/blk-iopoll.c: use iop instead of iopoll



All blk_iopoll functions use iop for parent iopoll structure except
blk_iopoll_complete.This also fixes one kernel-doc warning.

Cc: Jens Axboe <axboe@kernel.dk>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarJens Axboe <axboe@fb.com>
parent 74814b1c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -64,12 +64,12 @@ EXPORT_SYMBOL(__blk_iopoll_complete);
 *     iopoll handler will not be invoked again before blk_iopoll_sched_prep()
 *     is called.
 **/
void blk_iopoll_complete(struct blk_iopoll *iopoll)
void blk_iopoll_complete(struct blk_iopoll *iop)
{
	unsigned long flags;

	local_irq_save(flags);
	__blk_iopoll_complete(iopoll);
	__blk_iopoll_complete(iop);
	local_irq_restore(flags);
}
EXPORT_SYMBOL(blk_iopoll_complete);