staging: rtl8192e: cmdpkt: Reorder arguments
Use send_cmd_pkt(dev, type, data , size) order to avoid confusion Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2e74c73c98
commit
d15fe3e019
|
@ -17,7 +17,7 @@
|
|||
#include "r8192E_hw.h"
|
||||
#include "r8192E_cmdpkt.h"
|
||||
|
||||
bool rtl92e_send_cmd_pkt(struct net_device *dev, u8 *data, u32 type, u32 len)
|
||||
bool rtl92e_send_cmd_pkt(struct net_device *dev, u32 type, u8 *data, u32 len)
|
||||
{
|
||||
|
||||
bool rt_status = true;
|
||||
|
|
|
@ -15,5 +15,5 @@
|
|||
#ifndef R819XUSB_CMDPKT_H
|
||||
#define R819XUSB_CMDPKT_H
|
||||
|
||||
bool rtl92e_send_cmd_pkt(struct net_device *dev, u8 *data, u32 type, u32 len);
|
||||
bool rtl92e_send_cmd_pkt(struct net_device *dev, u32 type, u8 *data, u32 len);
|
||||
#endif
|
||||
|
|
|
@ -655,7 +655,7 @@ static void _rtl92e_dm_tx_power_tracking_callback_tssi(struct net_device *dev)
|
|||
tx_cmd.Op = TXCMD_SET_TX_PWR_TRACKING;
|
||||
tx_cmd.Length = 4;
|
||||
tx_cmd.Value = Value;
|
||||
rtl92e_send_cmd_pkt(dev, (u8 *)&tx_cmd, DESC_PACKET_TYPE_NORMAL,
|
||||
rtl92e_send_cmd_pkt(dev, DESC_PACKET_TYPE_NORMAL, (u8 *)&tx_cmd,
|
||||
sizeof(struct dcmd_txcmd));
|
||||
mdelay(1);
|
||||
for (i = 0; i <= 30; i++) {
|
||||
|
|
Loading…
Reference in New Issue