mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
iwlwifi: remove duplicated define
Duplicated define for listen interval (IWL_CONN_MAX_LISTEN_INTERVAL and IWL_CONN_LISTEN_INTERVAL), remove IWL_CONN_LISTEN_INTERVAL Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com> Reported-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Reinette Chatre <reinette.chatre@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
7300515d10
commit
570af86e0a
@ -163,9 +163,9 @@ static void iwl_static_sleep_cmd(struct iwl_priv *priv,
|
||||
cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
|
||||
|
||||
slp_itrvl = le32_to_cpu(cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1]);
|
||||
if (slp_itrvl > IWL_CONN_LISTEN_INTERVAL)
|
||||
if (slp_itrvl > IWL_CONN_MAX_LISTEN_INTERVAL)
|
||||
cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1] =
|
||||
cpu_to_le32(IWL_CONN_LISTEN_INTERVAL);
|
||||
cpu_to_le32(IWL_CONN_MAX_LISTEN_INTERVAL);
|
||||
|
||||
/* enforce max sleep interval */
|
||||
for (i = IWL_POWER_VEC_SIZE - 1; i >= 0 ; i--) {
|
||||
|
@ -30,8 +30,6 @@
|
||||
|
||||
#include "iwl-commands.h"
|
||||
|
||||
#define IWL_CONN_LISTEN_INTERVAL 10
|
||||
|
||||
#define IWL_ABSOLUTE_ZERO 0
|
||||
#define IWL_ABSOLUTE_MAX 0xFFFFFFFF
|
||||
#define IWL_TT_INCREASE_MARGIN 5
|
||||
|
Loading…
Reference in New Issue
Block a user