Commit 3dd312b4 authored by Scott Matheina's avatar Scott Matheina Committed by Greg Kroah-Hartman

staging:rtl8192u:r819xU_cmdpkt.c Removes un-necessary blank lines

Fixes checkpatch.pl warning - Blank lines aren't necessary before a
close brace '}' & Please don't use multiple blank lines
Signed-off-by: default avatarScott Matheina <scott@matheina.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5b2696c1
...@@ -133,11 +133,8 @@ static void cmpk_count_txstatistic(struct net_device *dev, cmpk_txfb_t *pstx_fb) ...@@ -133,11 +133,8 @@ static void cmpk_count_txstatistic(struct net_device *dev, cmpk_txfb_t *pstx_fb)
priv->stats.txretrycount += pstx_fb->retry_cnt; priv->stats.txretrycount += pstx_fb->retry_cnt;
priv->stats.txfeedbackretry += pstx_fb->retry_cnt; priv->stats.txfeedbackretry += pstx_fb->retry_cnt;
} }
/*----------------------------------------------------------------------------- /*-----------------------------------------------------------------------------
* Function: cmpk_handle_tx_feedback() * Function: cmpk_handle_tx_feedback()
* *
...@@ -178,7 +175,6 @@ static void cmpk_handle_tx_feedback(struct net_device *dev, u8 *pmsg) ...@@ -178,7 +175,6 @@ static void cmpk_handle_tx_feedback(struct net_device *dev, u8 *pmsg)
/* Collect info TX feedback packet to fill TCB. */ /* Collect info TX feedback packet to fill TCB. */
/* We can not know the packet length and transmit type: broadcast or uni /* We can not know the packet length and transmit type: broadcast or uni
or multicast. */ or multicast. */
} }
static void cmdpkt_beacontimerinterrupt_819xusb(struct net_device *dev) static void cmdpkt_beacontimerinterrupt_819xusb(struct net_device *dev)
...@@ -198,13 +194,8 @@ static void cmdpkt_beacontimerinterrupt_819xusb(struct net_device *dev) ...@@ -198,13 +194,8 @@ static void cmdpkt_beacontimerinterrupt_819xusb(struct net_device *dev)
} }
rtl819xusb_beacon_tx(dev, tx_rate); /* HW Beacon */ rtl819xusb_beacon_tx(dev, tx_rate); /* HW Beacon */
} }
/*----------------------------------------------------------------------------- /*-----------------------------------------------------------------------------
* Function: cmpk_handle_interrupt_status() * Function: cmpk_handle_interrupt_status()
* *
...@@ -242,7 +233,6 @@ static void cmpk_handle_interrupt_status(struct net_device *dev, u8 *pmsg) ...@@ -242,7 +233,6 @@ static void cmpk_handle_interrupt_status(struct net_device *dev, u8 *pmsg)
return; return;
} }
/* Statistics of beacon for ad-hoc mode. */ /* Statistics of beacon for ad-hoc mode. */
if (priv->ieee80211->iw_mode == IW_MODE_ADHOC) { if (priv->ieee80211->iw_mode == IW_MODE_ADHOC) {
/* 2 maybe need endian transform? */ /* 2 maybe need endian transform? */
...@@ -261,17 +251,13 @@ static void cmpk_handle_interrupt_status(struct net_device *dev, u8 *pmsg) ...@@ -261,17 +251,13 @@ static void cmpk_handle_interrupt_status(struct net_device *dev, u8 *pmsg)
if (rx_intr_status.interrupt_status & ISR_BcnTimerIntr) if (rx_intr_status.interrupt_status & ISR_BcnTimerIntr)
cmdpkt_beacontimerinterrupt_819xusb(dev); cmdpkt_beacontimerinterrupt_819xusb(dev);
} }
/* Other informations in interrupt status we need? */ /* Other informations in interrupt status we need? */
DMESG("<---- cmpk_handle_interrupt_status()\n"); DMESG("<---- cmpk_handle_interrupt_status()\n");
} }
/*----------------------------------------------------------------------------- /*-----------------------------------------------------------------------------
* Function: cmpk_handle_query_config_rx() * Function: cmpk_handle_query_config_rx()
* *
...@@ -295,7 +281,6 @@ static void cmpk_handle_query_config_rx(struct net_device *dev, u8 *pmsg) ...@@ -295,7 +281,6 @@ static void cmpk_handle_query_config_rx(struct net_device *dev, u8 *pmsg)
{ {
cmpk_query_cfg_t rx_query_cfg; cmpk_query_cfg_t rx_query_cfg;
/* 1. Extract TX feedback info from RFD to temp structure buffer. */ /* 1. Extract TX feedback info from RFD to temp structure buffer. */
/* It seems that FW use big endian(MIPS) and DRV use little endian in /* It seems that FW use big endian(MIPS) and DRV use little endian in
windows OS. So we have to read the content byte by byte or transfer windows OS. So we have to read the content byte by byte or transfer
...@@ -309,10 +294,8 @@ static void cmpk_handle_query_config_rx(struct net_device *dev, u8 *pmsg) ...@@ -309,10 +294,8 @@ static void cmpk_handle_query_config_rx(struct net_device *dev, u8 *pmsg)
(pmsg[10] << 8) | (pmsg[11] << 0); (pmsg[10] << 8) | (pmsg[11] << 0);
rx_query_cfg.mask = (pmsg[12] << 24) | (pmsg[13] << 16) | rx_query_cfg.mask = (pmsg[12] << 24) | (pmsg[13] << 16) |
(pmsg[14] << 8) | (pmsg[15] << 0); (pmsg[14] << 8) | (pmsg[15] << 0);
} }
/*----------------------------------------------------------------------------- /*-----------------------------------------------------------------------------
* Function: cmpk_count_tx_status() * Function: cmpk_count_tx_status()
* *
...@@ -374,8 +357,6 @@ static void cmpk_count_tx_status(struct net_device *dev, ...@@ -374,8 +357,6 @@ static void cmpk_count_tx_status(struct net_device *dev,
priv->stats.last_packet_rate = pstx_status->rate; priv->stats.last_packet_rate = pstx_status->rate;
} }
/*----------------------------------------------------------------------------- /*-----------------------------------------------------------------------------
* Function: cmpk_handle_tx_status() * Function: cmpk_handle_tx_status()
* *
...@@ -400,10 +381,8 @@ static void cmpk_handle_tx_status(struct net_device *dev, u8 *pmsg) ...@@ -400,10 +381,8 @@ static void cmpk_handle_tx_status(struct net_device *dev, u8 *pmsg)
memcpy((void *)&rx_tx_sts, (void *)pmsg, sizeof(cmpk_tx_status_t)); memcpy((void *)&rx_tx_sts, (void *)pmsg, sizeof(cmpk_tx_status_t));
/* 2. Use tx feedback info to count TX statistics. */ /* 2. Use tx feedback info to count TX statistics. */
cmpk_count_tx_status(dev, &rx_tx_sts); cmpk_count_tx_status(dev, &rx_tx_sts);
} }
/*----------------------------------------------------------------------------- /*-----------------------------------------------------------------------------
* Function: cmpk_handle_tx_rate_history() * Function: cmpk_handle_tx_rate_history()
* *
...@@ -428,7 +407,6 @@ static void cmpk_handle_tx_rate_history(struct net_device *dev, u8 *pmsg) ...@@ -428,7 +407,6 @@ static void cmpk_handle_tx_rate_history(struct net_device *dev, u8 *pmsg)
u32 *ptemp; u32 *ptemp;
struct r8192_priv *priv = ieee80211_priv(dev); struct r8192_priv *priv = ieee80211_priv(dev);
#ifdef ENABLE_PS #ifdef ENABLE_PS
pAdapter->HalFunc.GetHwRegHandler(pAdapter, HW_VAR_RF_STATE, pAdapter->HalFunc.GetHwRegHandler(pAdapter, HW_VAR_RF_STATE,
(pu1Byte)(&rtState)); (pu1Byte)(&rtState));
...@@ -469,10 +447,8 @@ static void cmpk_handle_tx_rate_history(struct net_device *dev, u8 *pmsg) ...@@ -469,10 +447,8 @@ static void cmpk_handle_tx_rate_history(struct net_device *dev, u8 *pmsg)
for (j = 0; j < 4; j++) for (j = 0; j < 4; j++)
priv->stats.txrate.ht_mcs[j][i] += ptxrate->ht_mcs[j][i]; priv->stats.txrate.ht_mcs[j][i] += ptxrate->ht_mcs[j][i];
} }
} }
/*----------------------------------------------------------------------------- /*-----------------------------------------------------------------------------
* Function: cmpk_message_handle_rx() * Function: cmpk_message_handle_rx()
* *
...@@ -567,5 +543,4 @@ u32 cmpk_message_handle_rx(struct net_device *dev, ...@@ -567,5 +543,4 @@ u32 cmpk_message_handle_rx(struct net_device *dev,
pcmd_buff += cmd_length; pcmd_buff += cmd_length;
} }
return 1; /* This is a command packet. */ return 1; /* This is a command packet. */
} }
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