mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
staging: rtl8188eu: clean up blank line style issues
Add missing and remove unnecessary blank lines to clear the following checkpatch issues. WARNING: Missing a blank line after declarations CHECK: Please use a blank line after function/struct/union/enum declarations CHECK: Blank lines aren't necessary before a close brace '}' CHECK: Please don't use multiple blank lines Signed-off-by: Michael Straube <straube.linux@gmail.com> Link: https://lore.kernel.org/r/20200916064257.14902-1-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
54617b5272
commit
4effb03d1f
8 changed files with 8 additions and 6 deletions
|
@ -371,8 +371,6 @@ void rtw_seccalctkipmic(u8 *key, u8 *header, u8 *data, u32 data_len, u8 *mic_cod
|
|||
rtw_secgetmic(&micdata, mic_code);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* macros for extraction/creation of unsigned char/unsigned short values */
|
||||
#define RotR1(v16) ((((v16) >> 1) & 0x7FFF) ^ (((v16) & 1) << 15))
|
||||
#define Lo8(v16) ((u8)((v16) & 0x00FF))
|
||||
|
@ -662,7 +660,6 @@ u32 rtw_tkip_decrypt(struct adapter *padapter, struct recv_frame *precvframe)
|
|||
u8 crc[4];
|
||||
struct arc4context mycontext;
|
||||
int length;
|
||||
|
||||
u8 *pframe, *payload, *iv, *prwskey;
|
||||
union pn48 dot11txpn;
|
||||
struct sta_info *stainfo;
|
||||
|
@ -670,7 +667,6 @@ u32 rtw_tkip_decrypt(struct adapter *padapter, struct recv_frame *precvframe)
|
|||
struct security_priv *psecuritypriv = &padapter->securitypriv;
|
||||
u32 res = _SUCCESS;
|
||||
|
||||
|
||||
pframe = (unsigned char *)precvframe->pkt->data;
|
||||
|
||||
/* 4 start to decrypt recvframe */
|
||||
|
@ -728,7 +724,6 @@ u32 rtw_tkip_decrypt(struct adapter *padapter, struct recv_frame *precvframe)
|
|||
|
||||
/* 3 ===== AES related ===== */
|
||||
|
||||
|
||||
#define MAX_MSG_SIZE 2048
|
||||
/*****************************/
|
||||
/******** SBOX Table *********/
|
||||
|
@ -1519,6 +1514,7 @@ const u8 Td4s[256] = {
|
|||
0x17U, 0x2bU, 0x04U, 0x7eU, 0xbaU, 0x77U, 0xd6U, 0x26U,
|
||||
0xe1U, 0x69U, 0x14U, 0x63U, 0x55U, 0x21U, 0x0cU, 0x7dU,
|
||||
};
|
||||
|
||||
const u8 rcons[] = {
|
||||
0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1B, 0x36
|
||||
/* for 128-bit blocks, Rijndael never uses more than 10 rcon values */
|
||||
|
|
|
@ -969,7 +969,6 @@ void ODM_TXPowerTrackingCheck(struct odm_dm_struct *pDM_Odm)
|
|||
|
||||
rtl88eu_dm_txpower_tracking_callback_thermalmeter(Adapter);
|
||||
pDM_Odm->RFCalibrateInfo.TM_Trigger = 0;
|
||||
|
||||
}
|
||||
|
||||
/* 3============================================================ */
|
||||
|
|
|
@ -138,6 +138,7 @@ static void getpowerbase88e(struct adapter *adapt, u8 *pwr_level_ofdm,
|
|||
(powerbase1 << 8) | powerbase1;
|
||||
*mcs_base = powerbase1;
|
||||
}
|
||||
|
||||
static void get_rx_power_val_by_reg(struct adapter *adapt, u8 channel,
|
||||
u8 index, u32 *powerbase0, u32 *powerbase1,
|
||||
u32 *out_val)
|
||||
|
|
|
@ -69,6 +69,7 @@ void _rtw_init_queue(struct __queue *pqueue);
|
|||
struct rtw_netdev_priv_indicator {
|
||||
void *priv;
|
||||
};
|
||||
|
||||
struct net_device *rtw_alloc_etherdev_with_old_priv(void *old_priv);
|
||||
|
||||
static inline struct adapter *rtw_netdev_priv(struct net_device *netdev)
|
||||
|
|
|
@ -94,6 +94,7 @@ enum TXDESC_SC {
|
|||
SC_LOWER = 0x02,
|
||||
SC_DUPLICATE = 0x03
|
||||
};
|
||||
|
||||
/* OFFSET 20 */
|
||||
#define SGI BIT(6)
|
||||
#define USB_TXAGG_NUM_SHT 24
|
||||
|
|
|
@ -62,7 +62,9 @@ struct signal_stat {
|
|||
u32 total_num; /* num of valid elements */
|
||||
u32 total_val; /* sum of valid elements */
|
||||
};
|
||||
|
||||
#define MAX_PATH_NUM_92CS 3
|
||||
|
||||
struct phy_info {
|
||||
u8 RxPWDBAll;
|
||||
u8 SignalQuality; /* in 0-100 index. */
|
||||
|
|
|
@ -331,6 +331,7 @@ static inline int IsFrameTypeCtrl(unsigned char *pframe)
|
|||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
/*-----------------------------------------------------------------------------
|
||||
Below is for the security related definition
|
||||
------------------------------------------------------------------------------*/
|
||||
|
|
|
@ -124,6 +124,7 @@ static char *translate_scan(struct adapter *padapter,
|
|||
|
||||
if (p && ht_ielen > 0) {
|
||||
struct ieee80211_ht_cap *pht_capie;
|
||||
|
||||
ht_cap = true;
|
||||
|
||||
pht_capie = (struct ieee80211_ht_cap *)(p + 2);
|
||||
|
|
Loading…
Reference in a new issue