blob: b4def75e9b10fb58578ce166d3e8c14c68586fe7 [file] [log] [blame]
Allen Martinfc468d82016-11-15 17:57:52 -08001From 5e807d5084af1931b681ad9470ef25f0d91ee518 Mon Sep 17 00:00:00 2001
2From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
3Date: Thu, 4 Feb 2016 18:59:19 +0100
4Subject: [PATCH 282/351] net: dev: make xmit_rec_dec() void
5X-NVConfidentiality: public
6
7Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
8---
9 net/core/dev.c | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/net/core/dev.c b/net/core/dev.c
13index 88cc76252c50..ccfc25c7e8c1 100644
14--- a/net/core/dev.c
15+++ b/net/core/dev.c
16@@ -2983,7 +2983,7 @@ static inline void xmit_rec_inc(void)
17 __this_cpu_inc(xmit_recursion);
18 }
19
20-static inline int xmit_rec_dec(void)
21+static inline void xmit_rec_dec(void)
22 {
23 __this_cpu_dec(xmit_recursion);
24 }
25--
262.10.1
27