netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] net: Remove unneeded return from void function
@ 2015-09-23 18:16 guillaume1.gomez
  0 siblings, 0 replies; only message in thread
From: guillaume1.gomez @ 2015-09-23 18:16 UTC (permalink / raw)
  To: guillaume1.gomez, davem, netdev, linux-kernel

From: Guillaume Gomez <guillaume1.gomez@gmail.com>

Signed-off-by: Guillaume Gomez <guillaume1.gomez@gmail.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);
 }
 
 /**
-- 
1.9.1

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-09-23 18:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-23 18:16 [PATCH 1/1] net: Remove unneeded return from void function guillaume1.gomez

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).