diff options
author | Keith Busch | 2021-12-22 13:52:39 -0800 |
---|---|---|
committer | Jens Axboe | 2021-12-22 16:56:59 -0700 |
commit | a16c7246368db8935652c805bc446928d0e1c0aa (patch) | |
tree | d3178fa387ae90556cb480bc9e44b8a691766765 | |
parent | 6fd3c510ee4b37f2f9fe3d3cafbfa459e15c5e11 (diff) |
block: remove unnecessary trailing '\'
While harmless, the blank line is certainly not intended to be part of
the rq_list_for_each() macro. Remove it.
Signed-off-by: Keith Busch <kbusch@kernel.org>
Link: https://lore.kernel.org/r/20211222215239.1768164-1-kbusch@kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | include/linux/blkdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index bb5fb7282e6e..22746b2d6825 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -1363,7 +1363,7 @@ struct io_comp_batch { }) #define rq_list_for_each(listptr, pos) \ - for (pos = rq_list_peek((listptr)); pos; pos = rq_list_next(pos)) \ + for (pos = rq_list_peek((listptr)); pos; pos = rq_list_next(pos)) #define rq_list_next(rq) (rq)->rq_next #define rq_list_empty(list) ((list) == (struct request *) NULL) |