mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 15:12:13 +02:00
wifi: wfx: relocate wfx_rate_mask_to_hw()
wfx_rate_mask_to_hw() is only used in hif_tx.c. So relocate it into hif_tx.c and mark it static. Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://lore.kernel.org/r/20231004172843.195332-3-jerome.pouiller@silabs.com
This commit is contained in:
parent
8b27aed225
commit
94c104d518
|
|
@ -45,6 +45,24 @@ static void *wfx_alloc_hif(size_t body_len, struct wfx_hif_msg **hif)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
static u32 wfx_rate_mask_to_hw(struct wfx_dev *wdev, u32 rates)
|
||||
{
|
||||
int i;
|
||||
u32 ret = 0;
|
||||
/* The device only supports 2GHz */
|
||||
struct ieee80211_supported_band *sband = wdev->hw->wiphy->bands[NL80211_BAND_2GHZ];
|
||||
|
||||
for (i = 0; i < sband->n_bitrates; i++) {
|
||||
if (rates & BIT(i)) {
|
||||
if (i >= sband->n_bitrates)
|
||||
dev_warn(wdev->dev, "unsupported basic rate\n");
|
||||
else
|
||||
ret |= BIT(sband->bitrates[i].hw_value);
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
int wfx_cmd_send(struct wfx_dev *wdev, struct wfx_hif_msg *request,
|
||||
void *reply, size_t reply_len, bool no_reply)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -20,24 +20,6 @@
|
|||
|
||||
#define HIF_MAX_ARP_IP_ADDRTABLE_ENTRIES 2
|
||||
|
||||
u32 wfx_rate_mask_to_hw(struct wfx_dev *wdev, u32 rates)
|
||||
{
|
||||
int i;
|
||||
u32 ret = 0;
|
||||
/* The device only supports 2GHz */
|
||||
struct ieee80211_supported_band *sband = wdev->hw->wiphy->bands[NL80211_BAND_2GHZ];
|
||||
|
||||
for (i = 0; i < sband->n_bitrates; i++) {
|
||||
if (rates & BIT(i)) {
|
||||
if (i >= sband->n_bitrates)
|
||||
dev_warn(wdev->dev, "unsupported basic rate\n");
|
||||
else
|
||||
ret |= BIT(sband->bitrates[i].hw_value);
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
void wfx_cooling_timeout_work(struct work_struct *work)
|
||||
{
|
||||
struct wfx_dev *wdev = container_of(to_delayed_work(work), struct wfx_dev,
|
||||
|
|
|
|||
|
|
@ -66,6 +66,5 @@ int wfx_update_pm(struct wfx_vif *wvif);
|
|||
|
||||
/* Other Helpers */
|
||||
void wfx_reset(struct wfx_vif *wvif);
|
||||
u32 wfx_rate_mask_to_hw(struct wfx_dev *wdev, u32 rates);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user