This patch rename the Dropped variable to dropped
to avoid CamelCase naming convention.
Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
perInterface_wlan_t *nic;
struct wilc *wilc;
u32 i = 0;
- u32 Dropped = 0;
+ u32 dropped = 0;
wilc_wlan_dev_t *p = &g_wlan;
nic = netdev_priv(dev);
if (tqe->tx_complete_func)
tqe->tx_complete_func(tqe->priv, tqe->status);
kfree(tqe);
- Dropped++;
+ dropped++;
}
}
}
spin_unlock_irqrestore(&wilc->txq_spinlock, p->txq_spinlock_flags);
- while (Dropped > 0) {
+ while (dropped > 0) {
linux_wlan_lock_timeout(&wilc->txq_event, 1);
- Dropped--;
+ dropped--;
}
return 1;