Commit 9e5ebaf8 authored by David S. Miller's avatar David S. Miller

atm: lec: Fix set-but-unused variables.

The variable 'eth' is set but unused in lec_handle_bridge().  Also,
the variable 'priv' is set but unused in lane_module_cleanup().

Just kill them off.
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d8f969e6
...@@ -129,7 +129,6 @@ static struct net_device *dev_lec[MAX_LEC_ITF]; ...@@ -129,7 +129,6 @@ static struct net_device *dev_lec[MAX_LEC_ITF];
#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE) #if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
static void lec_handle_bridge(struct sk_buff *skb, struct net_device *dev) static void lec_handle_bridge(struct sk_buff *skb, struct net_device *dev)
{ {
struct ethhdr *eth;
char *buff; char *buff;
struct lec_priv *priv; struct lec_priv *priv;
...@@ -138,7 +137,6 @@ static void lec_handle_bridge(struct sk_buff *skb, struct net_device *dev) ...@@ -138,7 +137,6 @@ static void lec_handle_bridge(struct sk_buff *skb, struct net_device *dev)
* LE_TOPOLOGY_REQUEST with the same value of Topology Change bit * LE_TOPOLOGY_REQUEST with the same value of Topology Change bit
* as the Config BPDU has * as the Config BPDU has
*/ */
eth = (struct ethhdr *)skb->data;
buff = skb->data + skb->dev->hard_header_len; buff = skb->data + skb->dev->hard_header_len;
if (*buff++ == 0x42 && *buff++ == 0x42 && *buff++ == 0x03) { if (*buff++ == 0x42 && *buff++ == 0x42 && *buff++ == 0x03) {
struct sock *sk; struct sock *sk;
...@@ -1180,7 +1178,6 @@ static int __init lane_module_init(void) ...@@ -1180,7 +1178,6 @@ static int __init lane_module_init(void)
static void __exit lane_module_cleanup(void) static void __exit lane_module_cleanup(void)
{ {
int i; int i;
struct lec_priv *priv;
remove_proc_entry("lec", atm_proc_root); remove_proc_entry("lec", atm_proc_root);
...@@ -1188,7 +1185,6 @@ static void __exit lane_module_cleanup(void) ...@@ -1188,7 +1185,6 @@ static void __exit lane_module_cleanup(void)
for (i = 0; i < MAX_LEC_ITF; i++) { for (i = 0; i < MAX_LEC_ITF; i++) {
if (dev_lec[i] != NULL) { if (dev_lec[i] != NULL) {
priv = netdev_priv(dev_lec[i]);
unregister_netdev(dev_lec[i]); unregister_netdev(dev_lec[i]);
free_netdev(dev_lec[i]); free_netdev(dev_lec[i]);
dev_lec[i] = NULL; dev_lec[i] = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment