staging: ks7010: ks7010_sdio.c: Fixing multiple assignments
Running checkpatch on ks7010_sdio.c shows two locations where multiple assignment statements are used. This patch modifies the assignments into single assignments. Signed-off-by: Nick Rosbrook <nrosbrook@mail.smcvt.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f3f2d351db
commit
20358d1384
|
@ -659,10 +659,12 @@ static void ks_sdio_interrupt(struct sdio_func *func)
|
|||
static int trx_device_init(struct ks_wlan_private *priv)
|
||||
{
|
||||
/* initialize values (tx) */
|
||||
priv->tx_dev.qtail = priv->tx_dev.qhead = 0;
|
||||
priv->tx_dev.qhead = 0;
|
||||
priv->tx_dev.qtail = 0;
|
||||
|
||||
/* initialize values (rx) */
|
||||
priv->rx_dev.qtail = priv->rx_dev.qhead = 0;
|
||||
priv->rx_dev.qhead = 0;
|
||||
priv->rx_dev.qtail = 0;
|
||||
|
||||
/* initialize spinLock (tx,rx) */
|
||||
spin_lock_init(&priv->tx_dev.tx_dev_lock);
|
||||
|
|
Loading…
Reference in New Issue