2019-05-30 09:22:32

by Matteo Croce

[permalink] [raw]
Subject: [PATCH] tipc: remove two unused variables

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 <[email protected]>
Signed-off-by: Matteo Croce <[email protected]>
---
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