[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAAOQCfQr9V-mb5uJdxk_=Npuy+Fx1ekAFoC2t-bWZJCqfLqmdQ@mail.gmail.com>
Date: Wed, 23 Sep 2015 12:31:27 +0200
From: Guillaume Gomez <guillaume1.gomez@...il.com>
To: netdev@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] net: Remove unneeded return from void function
Signed-off-by: Guillaume Gomez <guillaume1.gomez@...il.com>
---
include/linux/netdevice.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 88a0069..4a444a1 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -457,7 +457,7 @@ void napi_complete_done(struct napi_struct *n, int
work_done);
*/
static inline void napi_complete(struct napi_struct *n)
{
- return napi_complete_done(n, 0);
+ napi_complete_done(n, 0);
}
/**
--
2.1.4
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists