[PATCH] mroute6: Removed unnecessary 'return'
From: sunran001
Date: Wed Jul 19 2023 - 12:36:02 EST
Fix the checkpatch error as void function return statements are not
generally useful
Signed-off-by: Ran Sun <sunran001@xxxxxxxxxx>
---
include/linux/mroute6.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/include/linux/mroute6.h b/include/linux/mroute6.h
index 63ef5191cc57..4a6e3d28d636 100644
--- a/include/linux/mroute6.h
+++ b/include/linux/mroute6.h
@@ -60,7 +60,6 @@ static inline int ip6_mr_init(void)
static inline void ip6_mr_cleanup(void)
{
- return;
}
#endif