Commit 42b138d9 authored by Peter Senna Tschudin's avatar Peter Senna Tschudin Committed by Greg Kroah-Hartman

staging: vt6556: Cleanup coding style: lines over 80 chars

This patch cleanup the follwoing coding style issues:
 - line over 80 chars
 - spaces on the beginning of a line
 - put { and } on the correct places

Tested by compilation only.
Signed-off-by: default avatarPeter Senna Tschudin <peter.senna@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 618d7d07
...@@ -123,8 +123,9 @@ static u8 vnt_vt3184_vt3226d0[] = { ...@@ -123,8 +123,9 @@ static u8 vnt_vt3184_vt3226d0[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 /* 0xff */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 /* 0xff */
}; };
static const u16 awcFrameTime[MAX_RATE] = static const u16 awcFrameTime[MAX_RATE] = {
{10, 20, 55, 110, 24, 36, 48, 72, 96, 144, 192, 216}; 10, 20, 55, 110, 24, 36, 48, 72, 96, 144, 192, 216
};
/* /*
* Description: Calculate data frame transmitting time * Description: Calculate data frame transmitting time
...@@ -469,7 +470,8 @@ int BBbVT3184Init(struct vnt_private *priv) ...@@ -469,7 +470,8 @@ int BBbVT3184Init(struct vnt_private *priv)
priv->ldBmThreshold[2] = 0; priv->ldBmThreshold[2] = 0;
priv->ldBmThreshold[3] = 0; priv->ldBmThreshold[3] = 0;
/* Fix VT3226 DFC system timing issue */ /* Fix VT3226 DFC system timing issue */
vnt_mac_reg_bits_on(priv, MAC_REG_SOFTPWRCTL2, SOFTPWRCTL_RFLEOPT); vnt_mac_reg_bits_on(priv, MAC_REG_SOFTPWRCTL2,
SOFTPWRCTL_RFLEOPT);
} else { } else {
return true; return true;
} }
......
...@@ -58,8 +58,9 @@ ...@@ -58,8 +58,9 @@
/* const u16 cwRXBCNTSFOff[MAX_RATE] = /* const u16 cwRXBCNTSFOff[MAX_RATE] =
{17, 34, 96, 192, 34, 23, 17, 11, 8, 5, 4, 3}; */ {17, 34, 96, 192, 34, 23, 17, 11, 8, 5, 4, 3}; */
static const u16 cwRXBCNTSFOff[MAX_RATE] = static const u16 cwRXBCNTSFOff[MAX_RATE] = {
{192, 96, 34, 17, 34, 23, 17, 11, 8, 5, 4, 3}; 192, 96, 34, 17, 34, 23, 17, 11, 8, 5, 4, 3
};
/* /*
* Description: Set NIC media channel * Description: Set NIC media channel
...@@ -477,7 +478,7 @@ void vnt_update_top_rates(struct vnt_private *priv) ...@@ -477,7 +478,7 @@ void vnt_update_top_rates(struct vnt_private *priv)
} }
priv->byTopCCKBasicRate = top_cck; priv->byTopCCKBasicRate = top_cck;
} }
int vnt_ofdm_min_rate(struct vnt_private *priv) int vnt_ofdm_min_rate(struct vnt_private *priv)
{ {
...@@ -710,7 +711,7 @@ void vnt_update_next_tbtt(struct vnt_private *priv, u64 tsf, ...@@ -710,7 +711,7 @@ void vnt_update_next_tbtt(struct vnt_private *priv, u64 tsf,
data[7] = (u8)(tsf >> 56); data[7] = (u8)(tsf >> 56);
vnt_control_out(priv, MESSAGE_TYPE_SET_TSFTBTT, vnt_control_out(priv, MESSAGE_TYPE_SET_TSFTBTT,
MESSAGE_REQUEST_TBTT, 0, 8, data); MESSAGE_REQUEST_TBTT, 0, 8, data);
dev_dbg(&priv->usb->dev, "%s TBTT: %8llx\n", __func__, tsf); dev_dbg(&priv->usb->dev, "%s TBTT: %8llx\n", __func__, tsf);
......
...@@ -531,8 +531,9 @@ static void device_free_rx_bufs(struct vnt_private *priv) ...@@ -531,8 +531,9 @@ static void device_free_rx_bufs(struct vnt_private *priv)
static void usb_device_reset(struct vnt_private *pDevice) static void usb_device_reset(struct vnt_private *pDevice)
{ {
int status; int status;
status = usb_reset_device(pDevice->usb);
status = usb_reset_device(pDevice->usb);
if (status) if (status)
printk("usb_device_reset fail status=%d\n",status); printk("usb_device_reset fail status=%d\n",status);
return ; return ;
......
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