wireless: Remove casts to same type
[deliverable/linux.git] / drivers / net / wireless / mwifiex / 11n_rxreorder.c
index 9c44088054dd90bd967626d8416e63c083225fc8..89f7c570cd2e7f9016c6d734e7a7b0581833160b 100644 (file)
@@ -296,9 +296,7 @@ mwifiex_11n_create_rx_reorder_tbl(struct mwifiex_private *priv, u8 *ta,
  */
 int mwifiex_cmd_11n_addba_req(struct host_cmd_ds_command *cmd, void *data_buf)
 {
-       struct host_cmd_ds_11n_addba_req *add_ba_req =
-               (struct host_cmd_ds_11n_addba_req *)
-               &cmd->params.add_ba_req;
+       struct host_cmd_ds_11n_addba_req *add_ba_req = &cmd->params.add_ba_req;
 
        cmd->command = cpu_to_le16(HostCmd_CMD_11N_ADDBA_REQ);
        cmd->size = cpu_to_le16(sizeof(*add_ba_req) + S_DS_GEN);
@@ -320,9 +318,7 @@ int mwifiex_cmd_11n_addba_rsp_gen(struct mwifiex_private *priv,
                                  struct host_cmd_ds_11n_addba_req
                                  *cmd_addba_req)
 {
-       struct host_cmd_ds_11n_addba_rsp *add_ba_rsp =
-               (struct host_cmd_ds_11n_addba_rsp *)
-               &cmd->params.add_ba_rsp;
+       struct host_cmd_ds_11n_addba_rsp *add_ba_rsp = &cmd->params.add_ba_rsp;
        u8 tid;
        int win_size;
        uint16_t block_ack_param_set;
@@ -367,8 +363,7 @@ int mwifiex_cmd_11n_addba_rsp_gen(struct mwifiex_private *priv,
  */
 int mwifiex_cmd_11n_delba(struct host_cmd_ds_command *cmd, void *data_buf)
 {
-       struct host_cmd_ds_11n_delba *del_ba = (struct host_cmd_ds_11n_delba *)
-               &cmd->params.del_ba;
+       struct host_cmd_ds_11n_delba *del_ba = &cmd->params.del_ba;
 
        cmd->command = cpu_to_le16(HostCmd_CMD_11N_DELBA);
        cmd->size = cpu_to_le16(sizeof(*del_ba) + S_DS_GEN);
@@ -398,8 +393,7 @@ int mwifiex_11n_rx_reorder_pkt(struct mwifiex_private *priv,
        int start_win, end_win, win_size;
        u16 pkt_index;
 
-       tbl = mwifiex_11n_get_rx_reorder_tbl((struct mwifiex_private *) priv,
-                                            tid, ta);
+       tbl = mwifiex_11n_get_rx_reorder_tbl(priv, tid, ta);
        if (!tbl) {
                if (pkt_type != PKT_TYPE_BAR)
                        mwifiex_process_rx_packet(priv->adapter, payload);
@@ -520,9 +514,7 @@ mwifiex_del_ba_tbl(struct mwifiex_private *priv, int tid, u8 *peer_mac,
 int mwifiex_ret_11n_addba_resp(struct mwifiex_private *priv,
                               struct host_cmd_ds_command *resp)
 {
-       struct host_cmd_ds_11n_addba_rsp *add_ba_rsp =
-               (struct host_cmd_ds_11n_addba_rsp *)
-               &resp->params.add_ba_rsp;
+       struct host_cmd_ds_11n_addba_rsp *add_ba_rsp = &resp->params.add_ba_rsp;
        int tid, win_size;
        struct mwifiex_rx_reorder_tbl *tbl;
        uint16_t block_ack_param_set;
This page took 0.034202 seconds and 5 git commands to generate.