[-next] block: Fix some kernel-doc comments

Message ID 20221107062255.2685-1-yang.lee@linux.alibaba.com
State New
Headers
Series [-next] block: Fix some kernel-doc comments |

Commit Message

Yang Li Nov. 7, 2022, 6:22 a.m. UTC
  Remove the description of @required_features in elevator_match()
to clear the below warning:

block/elevator.c:103: warning: Excess function parameter 'required_features' description in 'elevator_match'

Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=2734
Fixes: ffb86425ee2c ("block: don't check for required features in elevator_match")
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 block/elevator.c | 1 -
 1 file changed, 1 deletion(-)
  

Comments

Jens Axboe Nov. 7, 2022, 2:22 p.m. UTC | #1
On Mon, 7 Nov 2022 14:22:55 +0800, Yang Li wrote:
> Remove the description of @required_features in elevator_match()
> to clear the below warning:
> 
> block/elevator.c:103: warning: Excess function parameter 'required_features' description in 'elevator_match'
> 
> 

Applied, thanks!

[1/1] block: Fix some kernel-doc comments
      commit: 5b2560c4c20e6d6933625b4b56f6843d6c7faf0f

Best regards,
  

Patch

diff --git a/block/elevator.c b/block/elevator.c
index 800e0038be0d..a5bdc3b1e7e5 100644
--- a/block/elevator.c
+++ b/block/elevator.c
@@ -94,7 +94,6 @@  static inline bool elv_support_features(struct request_queue *q,
  * elevator_match - Test an elevator name and features
  * @e: Scheduler to test
  * @name: Elevator name to test
- * @required_features: Features that the elevator must provide
  *
  * Return true if the elevator @e name matches @name and if @e provides all
  * the features specified by @required_features.