Commit decc6f8c authored by Tree Davies's avatar Tree Davies Committed by Greg Kroah-Hartman

Staging: rtl8192e: Rename variable bAllowAllDA

Rename variable bAllowAllDA to allow_all_da
to fix checkpatch warning Avoid CamelCase.
Signed-off-by: default avatarTree Davies <tdavies@darkphysics.net>
Reviewed-by: default avatarDan Carpenter <dan.carpenter@linaro.org>
Link: https://lore.kernel.org/r/20240310235552.4217-10-tdavies@darkphysics.netSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9cfe5964
......@@ -702,12 +702,12 @@ void rtl92e_link_change(struct net_device *dev)
}
}
void rtl92e_set_monitor_mode(struct net_device *dev, bool bAllowAllDA,
void rtl92e_set_monitor_mode(struct net_device *dev, bool allow_all_da,
bool WriteIntoReg)
{
struct r8192_priv *priv = rtllib_priv(dev);
if (bAllowAllDA)
if (allow_all_da)
priv->receive_config |= RCR_AAP;
else
priv->receive_config &= ~RCR_AAP;
......
......@@ -21,7 +21,7 @@ void rtl92e_set_reg(struct net_device *dev, u8 variable, u8 *val);
void rtl92e_get_eeprom_size(struct net_device *dev);
bool rtl92e_start_adapter(struct net_device *dev);
void rtl92e_link_change(struct net_device *dev);
void rtl92e_set_monitor_mode(struct net_device *dev, bool bAllowAllDA,
void rtl92e_set_monitor_mode(struct net_device *dev, bool allow_all_da,
bool WriteIntoReg);
void rtl92e_fill_tx_desc(struct net_device *dev, struct tx_desc *pdesc,
struct cb_desc *cb_desc, struct sk_buff *skb);
......
......@@ -1477,7 +1477,7 @@ struct rtllib_device {
void (*set_hw_reg_handler)(struct net_device *dev, u8 variable, u8 *val);
void (*allow_all_dest_addr_handler)(struct net_device *dev,
bool bAllowAllDA,
bool allow_all_da,
bool WriteIntoReg);
void (*rtllib_ips_leave_wq)(struct net_device *dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment