projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6fd3c51
)
block: remove unnecessary trailing '\'
author
Keith Busch
<kbusch@kernel.org>
Wed, 22 Dec 2021 21:52:39 +0000
(13:52 -0800)
committer
Jens Axboe
<axboe@kernel.dk>
Wed, 22 Dec 2021 23:56:59 +0000
(16:56 -0700)
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>
include/linux/blkdev.h
patch
|
blob
|
history
diff --git
a/include/linux/blkdev.h
b/include/linux/blkdev.h
index bb5fb7282e6eeb9762003d422e82861bf5f4a7b8..22746b2d682594e16d7ed5f9be5c7aa08ba7943e 100644
(file)
--- 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)