Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1231630 > unrolled thread

[PATCH 1/1] net: Remove unneeded return from void function

Started byguillaume1.gomez@gmail.com
First post2015-09-23 20:20 +0200
Last post2015-09-23 20:20 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 1/1] net: Remove unneeded return from void function guillaume1.gomez@gmail.com - 2015-09-23 20:20 +0200

#1231630 — [PATCH 1/1] net: Remove unneeded return from void function

Fromguillaume1.gomez@gmail.com
Date2015-09-23 20:20 +0200
Subject[PATCH 1/1] net: Remove unneeded return from void function
Message-ID<qbWO5-3Bx-1@gated-at.bofh.it>
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

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web