mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-16 05:26:07 +00:00
staging: vt6655: Type encoding info dropped from function name "CARDbSetBeaconPeriod"
function name "CARDbSetBeaconPeriod" updated like below: a.type encoding info dropped from name b.camelcase name replaced by snakecase Issue found by checkpatch Signed-off-by: Pavan Bobba <opensource206@gmail.com> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/8d4c10ac86f80bb46d5cb1f18079276c3326e5dd.1698730318.git.opensource206@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
314b805e69
commit
b6f0032e04
@ -320,7 +320,7 @@ bool card_update_tsf(struct vnt_private *priv, unsigned char rx_rate,
|
||||
*
|
||||
* Return Value: true if succeed; otherwise false
|
||||
*/
|
||||
bool CARDbSetBeaconPeriod(struct vnt_private *priv,
|
||||
bool card_set_beacon_period(struct vnt_private *priv,
|
||||
unsigned short wBeaconInterval)
|
||||
{
|
||||
u64 qwNextTBTT;
|
||||
|
@ -56,7 +56,7 @@ void CARDbRadioPowerOff(struct vnt_private *priv);
|
||||
bool card_set_phy_parameter(struct vnt_private *priv, u8 bb_type);
|
||||
bool card_update_tsf(struct vnt_private *priv, unsigned char rx_rate,
|
||||
u64 bss_timestamp);
|
||||
bool CARDbSetBeaconPeriod(struct vnt_private *priv,
|
||||
bool card_set_beacon_period(struct vnt_private *priv,
|
||||
unsigned short wBeaconInterval);
|
||||
|
||||
#endif /* __CARD_H__ */
|
||||
|
@ -1537,7 +1537,7 @@ static void vnt_bss_info_changed(struct ieee80211_hw *hw,
|
||||
card_update_tsf(priv, conf->beacon_rate->hw_value,
|
||||
conf->sync_tsf);
|
||||
|
||||
CARDbSetBeaconPeriod(priv, conf->beacon_int);
|
||||
card_set_beacon_period(priv, conf->beacon_int);
|
||||
|
||||
CARDvSetFirstNextTBTT(priv, conf->beacon_int);
|
||||
} else {
|
||||
|
@ -1456,7 +1456,7 @@ int vnt_beacon_enable(struct vnt_private *priv, struct ieee80211_vif *vif,
|
||||
|
||||
CARDvSetFirstNextTBTT(priv, conf->beacon_int);
|
||||
|
||||
CARDbSetBeaconPeriod(priv, conf->beacon_int);
|
||||
card_set_beacon_period(priv, conf->beacon_int);
|
||||
|
||||
return vnt_beacon_make(priv, vif);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user