staging: vt6655: rearrange lines exceeding 100 columns
Rearrange lines that are longer than 100 columns in width. Issue reported by chckpatch script. Also remove unnecessary pair of braces for single line instruction post if condition. Signed-off-by: Deepak R Varma <mh12gx2825@gmail.com> Link: https://lore.kernel.org/r/20201016154423.GA17210@ubuntu204 Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
30676f7b1f
commit
2ed1fa08e6
|
@ -461,7 +461,10 @@ static bool device_init_rings(struct vnt_private *priv)
|
|||
priv->opts.rx_descs0 * sizeof(struct vnt_rx_desc);
|
||||
|
||||
priv->tx0_bufs = dma_alloc_coherent(&priv->pcid->dev,
|
||||
priv->opts.tx_descs[0] * PKT_BUF_SZ + priv->opts.tx_descs[1] * PKT_BUF_SZ + CB_BEACON_BUF_SIZE + CB_MAX_BUF_SIZE,
|
||||
priv->opts.tx_descs[0] * PKT_BUF_SZ +
|
||||
priv->opts.tx_descs[1] * PKT_BUF_SZ +
|
||||
CB_BEACON_BUF_SIZE +
|
||||
CB_MAX_BUF_SIZE,
|
||||
&priv->tx_bufs_dma0, GFP_ATOMIC);
|
||||
if (!priv->tx0_bufs) {
|
||||
dev_err(&priv->pcid->dev, "allocate buf dma memory failed\n");
|
||||
|
@ -1075,10 +1078,10 @@ static void vnt_interrupt_process(struct vnt_private *priv)
|
|||
|
||||
if ((priv->op_mode == NL80211_IFTYPE_AP ||
|
||||
priv->op_mode == NL80211_IFTYPE_ADHOC) &&
|
||||
priv->vif->bss_conf.enable_beacon) {
|
||||
priv->vif->bss_conf.enable_beacon)
|
||||
MACvOneShotTimer1MicroSec(priv,
|
||||
(priv->vif->bss_conf.beacon_int - MAKE_BEACON_RESERVED) << 10);
|
||||
}
|
||||
(priv->vif->bss_conf.beacon_int -
|
||||
MAKE_BEACON_RESERVED) << 10);
|
||||
|
||||
/* TODO: adhoc PS mode */
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue