mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-18 13:48:16 -04:00
Staging: rtl8192e: Rename variable pFrame
Rename variable pFrame to frame to fix checkpatch warning Avoid CamelCase. Signed-off-by: Tree Davies <tdavies@darkphysics.net> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/20240908192633.94144-5-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
dda795ccb5
commit
bdb3b38734
@@ -622,10 +622,10 @@ void HT_update_self_and_peer_setting(struct rtllib_device *ieee,
|
||||
}
|
||||
EXPORT_SYMBOL(HT_update_self_and_peer_setting);
|
||||
|
||||
u8 ht_c_check(struct rtllib_device *ieee, u8 *pFrame)
|
||||
u8 ht_c_check(struct rtllib_device *ieee, u8 *frame)
|
||||
{
|
||||
if (ieee->ht_info->current_ht_support) {
|
||||
if ((is_qos_data_frame(pFrame) && frame_order(pFrame)) == 1) {
|
||||
if ((is_qos_data_frame(frame) && frame_order(frame)) == 1) {
|
||||
netdev_dbg(ieee->dev, "HT CONTROL FILED EXIST!!\n");
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -1740,7 +1740,7 @@ u8 ht_get_highest_mcs_rate(struct rtllib_device *ieee, u8 *pMCSRateSet,
|
||||
u8 *pMCSFilter);
|
||||
extern u8 MCS_FILTER_ALL[];
|
||||
extern u16 MCS_DATA_RATE[2][2][77];
|
||||
u8 ht_c_check(struct rtllib_device *ieee, u8 *pFrame);
|
||||
u8 ht_c_check(struct rtllib_device *ieee, u8 *frame);
|
||||
void ht_reset_iot_setting(struct rt_hi_throughput *ht_info);
|
||||
bool is_ht_half_nmode_aps(struct rtllib_device *ieee);
|
||||
u16 tx_count_to_data_rate(struct rtllib_device *ieee, u8 nDataRate);
|
||||
|
||||
Reference in New Issue
Block a user