Commit b5283871 authored by Kalle Valo's avatar Kalle Valo

ath6kl: use max_t() in ath6kl_cfg80211_connect()

ath6kl/cfg80211.c:589: WARNING: max() should probably be
max_t(u16, vif->listen_intvl_t, ATH6KL_MAX_WOW_LISTEN_INTL)
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 7433a490
......@@ -586,8 +586,8 @@ static int ath6kl_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev,
vif->reconnect_flag = 0;
if (vif->nw_type == INFRA_NETWORK) {
interval = max(vif->listen_intvl_t,
(u16) ATH6KL_MAX_WOW_LISTEN_INTL);
interval = max_t(u16, vif->listen_intvl_t,
ATH6KL_MAX_WOW_LISTEN_INTL);
status = ath6kl_wmi_listeninterval_cmd(ar->wmi, vif->fw_vif_idx,
interval,
0);
......
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