diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-07-02 16:22:20 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-07-08 14:30:33 -0400 |
commit | 4f6ad60cf357e1663d84de052af68dfccd734ec7 (patch) | |
tree | 9abbb8f213ee560bade89558ffcd690d603440fc /net/ipv4 | |
parent | 52d14c6661bc08ed51c271a5a9ff3210abef98b4 (diff) |
ipconfig: add static to local variable
ic_dev_xid is only used in ipconfig.c
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Cc: netdev@vger.kernel.org
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/ipconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c index b3e86ea7b71b..f0f3f9f77b30 100644 --- a/net/ipv4/ipconfig.c +++ b/net/ipv4/ipconfig.c | |||
@@ -143,7 +143,7 @@ __be32 ic_servaddr = NONE; /* Boot server IP address */ | |||
143 | __be32 root_server_addr = NONE; /* Address of NFS server */ | 143 | __be32 root_server_addr = NONE; /* Address of NFS server */ |
144 | u8 root_server_path[256] = { 0, }; /* Path to mount as root */ | 144 | u8 root_server_path[256] = { 0, }; /* Path to mount as root */ |
145 | 145 | ||
146 | __be32 ic_dev_xid; /* Device under configuration */ | 146 | static __be32 ic_dev_xid; /* Device under configuration */ |
147 | 147 | ||
148 | /* vendor class identifier */ | 148 | /* vendor class identifier */ |
149 | static char vendor_class_identifier[253] __initdata; | 149 | static char vendor_class_identifier[253] __initdata; |