[PATCH] tipc: remove two unused variables

From: Matteo Croce
Date: Thu May 30 2019 - 05:23:34 EST


Remove two variables which are unused after merging 6a33853c5773 and
generate the following warnings:

CC [M] net/tipc/sysctl.o
net/tipc/sysctl.c:42:12: warning: âoneâ defined but not used [-Wunused-variable]
42 | static int one = 1;
| ^~~
net/tipc/sysctl.c:41:12: warning: âzeroâ defined but not used [-Wunused-variable]
41 | static int zero;
| ^~~~

Fixes: 6a33853c5773 ("proc/sysctl: add shared variables for range check")
Reported-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx>
Signed-off-by: Matteo Croce <mcroce@xxxxxxxxxx>
---
net/tipc/sysctl.c | 2 --
1 file changed, 2 deletions(-)

diff --git a/net/tipc/sysctl.c b/net/tipc/sysctl.c
index 9df82a573aa7..180574ff3a3f 100644
--- a/net/tipc/sysctl.c
+++ b/net/tipc/sysctl.c
@@ -38,8 +38,6 @@

#include <linux/sysctl.h>

-static int zero;
-static int one = 1;
static struct ctl_table_header *tipc_ctl_hdr;

static struct ctl_table tipc_table[] = {
--
2.21.0