staging: vt6655: Fix long lines
Lines longer than 80 characters should be avoided because they are ugly and harder to read. Fix a few of long lines to comply with the preferred coding style for the linux kernel. Issues found by checkpatch. Suggested-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Frank A. Cancio Bello <frank@generalsoftwareinc.com> Link: https://lore.kernel.org/r/588c73f275b22f55323797706e5ceae44d7aa160.1572649242.git.frank@generalsoftwareinc.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
31d0c9d9b7
commit
3bce4750c9
|
@ -295,7 +295,8 @@ static void device_init_registers(struct vnt_private *priv)
|
|||
/* Get Desire Power Value */
|
||||
priv->byCurPwr = 0xFF;
|
||||
priv->byCCKPwr = SROMbyReadEmbedded(priv->PortOffset, EEP_OFS_PWR_CCK);
|
||||
priv->byOFDMPwrG = SROMbyReadEmbedded(priv->PortOffset, EEP_OFS_PWR_OFDMG);
|
||||
priv->byOFDMPwrG = SROMbyReadEmbedded(priv->PortOffset,
|
||||
EEP_OFS_PWR_OFDMG);
|
||||
|
||||
/* Load power Table */
|
||||
for (ii = 0; ii < CB_MAX_CHANNEL_24G; ii++) {
|
||||
|
@ -660,7 +661,8 @@ static int device_init_td0_ring(struct vnt_private *priv)
|
|||
desc->td_info->buf_dma = priv->tx_bufs_dma0 + i * PKT_BUF_SZ;
|
||||
|
||||
desc->next = &(priv->apTD0Rings[(i + 1) % priv->opts.tx_descs[0]]);
|
||||
desc->next_desc = cpu_to_le32(curr + sizeof(struct vnt_tx_desc));
|
||||
desc->next_desc = cpu_to_le32(curr +
|
||||
sizeof(struct vnt_tx_desc));
|
||||
}
|
||||
|
||||
if (i > 0)
|
||||
|
|
|
@ -558,7 +558,8 @@ static bool RFbAL2230Init(struct vnt_private *priv)
|
|||
MACvTimer0MicroSDelay(priv, 30);/* 30us */
|
||||
ret &= IFRFbWriteEmbedded(priv, (0x00780f00 + (BY_AL2230_REG_LEN << 3) + IFREGCTL_REGW));
|
||||
MACvTimer0MicroSDelay(priv, 30);/* 30us */
|
||||
ret &= IFRFbWriteEmbedded(priv, dwAL2230InitTable[CB_AL2230_INIT_SEQ - 1]);
|
||||
ret &= IFRFbWriteEmbedded(priv,
|
||||
dwAL2230InitTable[CB_AL2230_INIT_SEQ - 1]);
|
||||
|
||||
MACvWordRegBitsOn(iobase, MAC_REG_SOFTPWRCTL, (SOFTPWRCTL_SWPE3 |
|
||||
SOFTPWRCTL_SWPE2 |
|
||||
|
|
Loading…
Reference in New Issue