diff mbox series

blk-mq: fix build warning when making htmldocs

Message ID 20210421154526.1954174-1-ming.lei@redhat.com (mailing list archive)
State New, archived
Headers show
Series blk-mq: fix build warning when making htmldocs | expand

Commit Message

Ming Lei April 21, 2021, 3:45 p.m. UTC
Fixes the following warning when running 'make htmldocs'.

Fixes: d022d18c045f ("scsi: blk-mq: Add callbacks for storing & retrieving budget token")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Ming Lei <ming.lei@redhat.com>
---
Martin, please apply it against 5.13/scsi-queue.

 include/linux/blk-mq.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Martin K. Petersen April 22, 2021, 2:59 a.m. UTC | #1
Ming,

> Fixes the following warning when running 'make htmldocs'.

Added missing warning messages and applied to 5.13/scsi-staging, thanks!
diff mbox series

Patch

diff --git a/include/linux/blk-mq.h b/include/linux/blk-mq.h
index 3bd3ee651143..359486940fa0 100644
--- a/include/linux/blk-mq.h
+++ b/include/linux/blk-mq.h
@@ -313,12 +313,12 @@  struct blk_mq_ops {
 	 */
 	void (*put_budget)(struct request_queue *, int);
 
-	/*
-	 * @set_rq_budget_toekn: store rq's budget token
+	/**
+	 * @set_rq_budget_token: store rq's budget token
 	 */
 	void (*set_rq_budget_token)(struct request *, int);
-	/*
-	 * @get_rq_budget_toekn: retrieve rq's budget token
+	/**
+	 * @get_rq_budget_token: retrieve rq's budget token
 	 */
 	int (*get_rq_budget_token)(struct request *);