staging: rtl8192e: Rename cmpk_message_handle_tx
Use naming schema found in other rtlwifi devices. Rename cmpk_message_handle_tx to rtl92e_send_cmd_pkt. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2497ef5b54
commit
12656e2b8c
3 changed files with 6 additions and 11 deletions
|
@ -21,11 +21,8 @@
|
|||
#include "r8192E_hw.h"
|
||||
#include "r8192E_cmdpkt.h"
|
||||
|
||||
bool cmpk_message_handle_tx(
|
||||
struct net_device *dev,
|
||||
u8 *code_virtual_address,
|
||||
u32 packettype,
|
||||
u32 buffer_len)
|
||||
bool rtl92e_send_cmd_pkt(struct net_device *dev, u8 *code_virtual_address,
|
||||
u32 packettype, u32 buffer_len)
|
||||
{
|
||||
|
||||
bool rt_status = true;
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
#ifndef R819XUSB_CMDPKT_H
|
||||
#define R819XUSB_CMDPKT_H
|
||||
|
||||
extern bool cmpk_message_handle_tx(struct net_device *dev,
|
||||
u8 *codevirtualaddress, u32 packettype,
|
||||
u32 buffer_len);
|
||||
extern bool rtl92e_send_cmd_pkt(struct net_device *dev, u8 *codevirtualaddress,
|
||||
u32 packettype, u32 buffer_len);
|
||||
#endif
|
||||
|
|
|
@ -674,8 +674,7 @@ static void dm_TXPowerTrackingCallback_TSSI(struct net_device *dev)
|
|||
tx_cmd.Op = TXCMD_SET_TX_PWR_TRACKING;
|
||||
tx_cmd.Length = 4;
|
||||
tx_cmd.Value = Value;
|
||||
cmpk_message_handle_tx(dev, (u8 *)&tx_cmd,
|
||||
DESC_PACKET_TYPE_INIT,
|
||||
rtl92e_send_cmd_pkt(dev, (u8 *)&tx_cmd, DESC_PACKET_TYPE_INIT,
|
||||
sizeof(struct dcmd_txcmd));
|
||||
mdelay(1);
|
||||
for (i = 0; i <= 30; i++) {
|
||||
|
|
Loading…
Add table
Reference in a new issue