From 2697a217cace11c3e97f51a9e2e9bc55eb29c2b4 Mon Sep 17 00:00:00 2001 From: Luca Coelho Date: Thu, 2 Nov 2017 11:59:35 +0200 Subject: patches: pre-declare stats64_fn_wrap() to avoid sparse warnings The stats64_fn_wrap() function was changed to be not-static so it can be used by usbnet. This causes problems in files that don't export it. Work around that byt just pre-declaring it before the actual definition. Fixes: 5a00d8489c7 ("patches: adapt the stat64 usage for usbnet") Signed-off-by: Luca Coelho Signed-off-by: Johannes Berg --- patches/0075-ndo-stats-64.cocci | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'patches') diff --git a/patches/0075-ndo-stats-64.cocci b/patches/0075-ndo-stats-64.cocci index 86131824..8971a97c 100644 --- a/patches/0075-ndo-stats-64.cocci +++ b/patches/0075-ndo-stats-64.cocci @@ -18,6 +18,10 @@ identifier r.stats64_fn; @@ void stats64_fn(...) {...} +#if LINUX_VERSION_IS_LESS(4,11,0) ++/* Just declare it here to keep sparse happy */ ++struct rtnl_link_stats64 * ++stats64_fn_wrap(struct net_device *dev, ++ struct rtnl_link_stats64 *stats); +struct rtnl_link_stats64 * +stats64_fn_wrap(struct net_device *dev, + struct rtnl_link_stats64 *stats) -- cgit v1.2.3