staging:rtl8192u: Refactor DCMD_TXCMD_T structure - Style
authorJohn Whitmore <johnfwhitmore@gmail.com>
Fri, 3 Aug 2018 00:02:05 +0000 (01:02 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 5 Aug 2018 14:21:07 +0000 (16:21 +0200)
The structure DCMD_TXCMD_T is declared with a typedef, which causes a
checkpatch issue with defining new types. As a result the typedef has
been removed.

The structure's name DCMD_TXCMD_T, as a type, is meant to be lowercase
so has been renamed to tx_config_cmd.

The structures three members, (Op, Length, and Value) are all violating
the coding standard policy on CamelCase naming, so have all been renamed.
They have been renamed with longer names, (cmd_op, cmd_length and
cmd_value), to make the variable names easier to search for in code.

The magic numbers '4' and '12' have both been replaced with sizeof()
calls, as they both represent the size of data elements.

These are coding style changes which 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>
drivers/staging/rtl8192u/r8192U_dm.c
drivers/staging/rtl8192u/r8192U_dm.h

index 6f17732..4c8f674 100644 (file)
@@ -510,7 +510,7 @@ static void dm_TXPowerTrackingCallback_TSSI(struct net_device *dev)
 {
        struct r8192_priv *priv = ieee80211_priv(dev);
        bool                                            viviflag = false;
-       DCMD_TXCMD_T                    tx_cmd;
+       struct tx_config_cmd                            tx_cmd;
        u8                                              powerlevelOFDM24G;
        int                                             i = 0, j = 0, k = 0;
        u8                                              RF_Type, tmp_report[5] = {0, 0, 0, 0, 0};
@@ -532,10 +532,10 @@ static void dm_TXPowerTrackingCallback_TSSI(struct net_device *dev)
        RT_TRACE(COMP_POWER_TRACKING, "powerlevelOFDM24G = %x\n", powerlevelOFDM24G);
 
        for (j = 0; j <= 30; j++) { /* fill tx_cmd */
-               tx_cmd.Op = TXCMD_SET_TX_PWR_TRACKING;
-               tx_cmd.Length = 4;
-               tx_cmd.Value = Value;
-               rtStatus = SendTxCommandPacket(dev, &tx_cmd, 12);
+               tx_cmd.cmd_op = TXCMD_SET_TX_PWR_TRACKING;
+               tx_cmd.cmd_length = sizeof(tx_cmd.cmd_op);
+               tx_cmd.cmd_value = Value;
+               rtStatus = SendTxCommandPacket(dev, &tx_cmd, sizeof(struct tx_config_cmd));
                if (rtStatus == RT_STATUS_FAILURE)
                        RT_TRACE(COMP_POWER_TRACKING, "Set configuration with tx cmd queue fail!\n");
                usleep_range(1000, 2000);
index 66dfcbb..9a01054 100644 (file)
@@ -139,11 +139,12 @@ struct dynamic_rx_path_sel {
        long            cck_pwdb_sta[4];
 };
 
-typedef struct tag_Tx_Config_Cmd_Format {
-       u32     Op;                     /* Command packet type. */
-       u32     Length;                 /* Command packet length. */
-       u32     Value;
-} DCMD_TXCMD_T, *PDCMD_TXCMD_T;
+struct tx_config_cmd {
+       u32     cmd_op;                 /* Command packet type. */
+       u32     cmd_length;                     /* Command packet length. */
+       u32     cmd_value;
+};
+
 /*------------------------------Define structure----------------------------*/