staging:rtl8192u: Remove typedef of struct cmpk_txfb_t - Style

Remove the typedef of the structure cmpk_txfb_t. This clears the
checkpatch issue with defining new types.

Additionally the type is renamed from cmpk_txfb_t to cmd_pkt_tx_feedback
removing the '_t' as the typedef has been removed.

These changes are purely coding style in nature and should have no
impact on runtime code execution.

Signed-off-by: John Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
John Whitmore 2018-07-29 22:07:33 +01:00 committed by Greg Kroah-Hartman
parent 8f0edc1125
commit ac2028a77d
2 changed files with 7 additions and 7 deletions

View File

@ -66,7 +66,7 @@ rt_status SendTxCommandPacket(struct net_device *dev, void *pData, u32 DataLen)
* Overview: * Overview:
* *
* Input: PADAPTER pAdapter * Input: PADAPTER pAdapter
* CMPK_TXFB_T *psTx_FB * STRUCT CMD_PKT_TX_FEEDBACK *psTx_FB
* *
* Output: NONE * Output: NONE
* *
@ -78,7 +78,7 @@ rt_status SendTxCommandPacket(struct net_device *dev, void *pData, u32 DataLen)
* *
*--------------------------------------------------------------------------- *---------------------------------------------------------------------------
*/ */
static void cmpk_count_txstatistic(struct net_device *dev, cmpk_txfb_t *pstx_fb) static void cmpk_count_txstatistic(struct net_device *dev, struct cmd_pkt_tx_feedback *pstx_fb)
{ {
struct r8192_priv *priv = ieee80211_priv(dev); struct r8192_priv *priv = ieee80211_priv(dev);
#ifdef ENABLE_PS #ifdef ENABLE_PS
@ -163,7 +163,7 @@ static void cmpk_count_txstatistic(struct net_device *dev, cmpk_txfb_t *pstx_fb)
static void cmpk_handle_tx_feedback(struct net_device *dev, u8 *pmsg) static void cmpk_handle_tx_feedback(struct net_device *dev, u8 *pmsg)
{ {
struct r8192_priv *priv = ieee80211_priv(dev); struct r8192_priv *priv = ieee80211_priv(dev);
cmpk_txfb_t rx_tx_fb; struct cmd_pkt_tx_feedback rx_tx_fb;
priv->stats.txfeedback++; priv->stats.txfeedback++;
@ -173,7 +173,7 @@ static void cmpk_handle_tx_feedback(struct net_device *dev, u8 *pmsg)
* endian type before copy the message copy. * endian type before copy the message copy.
*/ */
/* Use pointer to transfer structure memory. */ /* Use pointer to transfer structure memory. */
memcpy((u8 *)&rx_tx_fb, pmsg, sizeof(cmpk_txfb_t)); memcpy((u8 *)&rx_tx_fb, pmsg, sizeof(struct cmd_pkt_tx_feedback));
/* 2. Use tx feedback info to count TX statistics. */ /* 2. Use tx feedback info to count TX statistics. */
cmpk_count_txstatistic(dev, &rx_tx_fb); cmpk_count_txstatistic(dev, &rx_tx_fb);
/* Comment previous method for TX statistic function. */ /* Comment previous method for TX statistic function. */

View File

@ -2,7 +2,7 @@
#ifndef R819XUSB_CMDPKT_H #ifndef R819XUSB_CMDPKT_H
#define R819XUSB_CMDPKT_H #define R819XUSB_CMDPKT_H
/* Different command packet have dedicated message length and definition. */ /* Different command packet have dedicated message length and definition. */
#define CMPK_RX_TX_FB_SIZE sizeof(cmpk_txfb_t) /* 20 */ #define CMPK_RX_TX_FB_SIZE sizeof(struct cmd_pkt_tx_feedback) /* 20 */
#define CMPK_TX_SET_CONFIG_SIZE sizeof(cmpk_set_cfg_t) /* 16 */ #define CMPK_TX_SET_CONFIG_SIZE sizeof(cmpk_set_cfg_t) /* 16 */
#define CMPK_BOTH_QUERY_CONFIG_SIZE sizeof(cmpk_set_cfg_t) /* 16 */ #define CMPK_BOTH_QUERY_CONFIG_SIZE sizeof(cmpk_set_cfg_t) /* 16 */
#define CMPK_RX_TX_STS_SIZE sizeof(cmpk_tx_status_t) #define CMPK_RX_TX_STS_SIZE sizeof(cmpk_tx_status_t)
@ -19,7 +19,7 @@
/*------------------------------Define structure----------------------------*/ /*------------------------------Define structure----------------------------*/
/* Define different command packet structure. */ /* Define different command packet structure. */
/* 1. RX side: TX feedback packet. */ /* 1. RX side: TX feedback packet. */
typedef struct tag_cmd_pkt_tx_feedback { struct cmd_pkt_tx_feedback {
/* DWORD 0 */ /* DWORD 0 */
u8 element_id; /* Command packet type. */ u8 element_id; /* Command packet type. */
u8 length; /* Command packet length. */ u8 length; /* Command packet length. */
@ -52,7 +52,7 @@ typedef struct tag_cmd_pkt_tx_feedback {
/* DWORD 5 */ /* DWORD 5 */
u16 reserve3; u16 reserve3;
u16 duration; u16 duration;
} cmpk_txfb_t; };
/* 2. RX side: Interrupt status packet. It includes Beacon State, /* 2. RX side: Interrupt status packet. It includes Beacon State,
* Beacon Timer Interrupt and other useful informations in MAC ISR Reg. * Beacon Timer Interrupt and other useful informations in MAC ISR Reg.