From: Vedang Patel Date: Tue, 25 Jun 2019 22:07:16 +0000 (-0700) Subject: taprio: Remove inline directive X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=566af331b5a6ae3969cf212c2077457d4963b0d1;p=openwrt%2Fstaging%2Fblogic.git taprio: Remove inline directive Remove inline directive from length_to_duration(). We will let the compiler make the decisions. Signed-off-by: Vedang Patel Signed-off-by: David S. Miller --- diff --git a/net/sched/sch_taprio.c b/net/sched/sch_taprio.c index a41d7d4434ee..6ef0cc03fdb9 100644 --- a/net/sched/sch_taprio.c +++ b/net/sched/sch_taprio.c @@ -168,7 +168,7 @@ static struct sk_buff *taprio_peek(struct Qdisc *sch) return NULL; } -static inline int length_to_duration(struct taprio_sched *q, int len) +static int length_to_duration(struct taprio_sched *q, int len) { return div_u64(len * atomic64_read(&q->picos_per_byte), 1000); }