Commit 12656e2b authored by Mateusz Kulikowski's avatar Mateusz Kulikowski Committed by Greg Kroah-Hartman
Browse files

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: default avatarMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2497ef5b
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -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;
+2 −3
Original line number Diff line number Diff line
@@ -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
+2 −3
Original line number Diff line number Diff line
@@ -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++) {