From: Yu Kuai Date: Sat, 5 Jun 2021 10:18:35 +0000 (+0800) Subject: sch_htb: fix doc warning in htb_add_class_to_row() X-Git-Tag: v5.15~843^2~327 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=996bccc39afba3db1309b8cd845f1f463516050e;p=platform%2Fkernel%2Flinux-starfive.git sch_htb: fix doc warning in htb_add_class_to_row() Add description for parameters of htb_add_class_to_row() to fix gcc W=1 warnings: net/sched/sch_htb.c:351: warning: Function parameter or member 'q' not described in 'htb_add_class_to_row' net/sched/sch_htb.c:351: warning: Function parameter or member 'cl' not described in 'htb_add_class_to_row' net/sched/sch_htb.c:351: warning: Function parameter or member 'mask' not described in 'htb_add_class_to_row' Signed-off-by: Yu Kuai Signed-off-by: David S. Miller --- diff --git a/net/sched/sch_htb.c b/net/sched/sch_htb.c index 5ad28df..97a9df4 100644 --- a/net/sched/sch_htb.c +++ b/net/sched/sch_htb.c @@ -349,6 +349,9 @@ static inline void htb_next_rb_node(struct rb_node **n) /** * htb_add_class_to_row - add class to its row + * @q: the priority event queue + * @cl: the class to add + * @mask: the given priorities in class in bitmap * * The class is added to row at priorities marked in mask. * It does nothing if mask == 0.