Remove unnecassary casts in the argument to kfree.
Signed-off-by: Xu Wang <[email protected]>
---
net/sched/em_ipt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/sched/em_ipt.c b/net/sched/em_ipt.c
index eecfe072c508..18755d29fd15 100644
--- a/net/sched/em_ipt.c
+++ b/net/sched/em_ipt.c
@@ -199,7 +199,7 @@ static void em_ipt_destroy(struct tcf_ematch *em)
im->match->destroy(&par);
}
module_put(im->match->me);
- kfree((void *)im);
+ kfree(im);
}
static int em_ipt_match(struct sk_buff *skb, struct tcf_ematch *em,
--
2.17.1
From: Xu Wang <[email protected]>
Date: Thu, 23 Apr 2020 13:43:13 +0800
> Remove unnecassary casts in the argument to kfree.
>
> Signed-off-by: Xu Wang <[email protected]>
Applied to net-next, thanks.