mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 21:56:39 +07:00
iwlwifi: modify #ifdef to avoid sparse complain
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
This commit is contained in:
parent
c7d258288f
commit
07d3c15acc
@ -1420,37 +1420,37 @@ void iwl_set_hw_params(struct iwl_priv *priv)
|
||||
|
||||
|
||||
|
||||
void iwl_debug_config(struct iwl_priv *priv)
|
||||
/* show what optional capabilities we have */
|
||||
void iwl_option_config(struct iwl_priv *priv)
|
||||
{
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_DEBUG "
|
||||
#ifdef CONFIG_IWLWIFI_DEBUG
|
||||
"enabled\n");
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_DEBUG enabled\n");
|
||||
#else
|
||||
"disabled\n");
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_DEBUG disabled\n");
|
||||
#endif
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_DEBUGFS "
|
||||
|
||||
#ifdef CONFIG_IWLWIFI_DEBUGFS
|
||||
"enabled\n");
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_DEBUGFS enabled\n");
|
||||
#else
|
||||
"disabled\n");
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_DEBUGFS disabled\n");
|
||||
#endif
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_DEVICE_TRACING "
|
||||
|
||||
#ifdef CONFIG_IWLWIFI_DEVICE_TRACING
|
||||
"enabled\n");
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_DEVICE_TRACING enabled\n");
|
||||
#else
|
||||
"disabled\n");
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_DEVICE_TRACING disabled\n");
|
||||
#endif
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_DEVICE_TESTMODE "
|
||||
|
||||
#ifdef CONFIG_IWLWIFI_DEVICE_TESTMODE
|
||||
"enabled\n");
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_DEVICE_TESTMODE enabled\n");
|
||||
#else
|
||||
"disabled\n");
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_DEVICE_TESTMODE disabled\n");
|
||||
#endif
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_P2P "
|
||||
|
||||
#ifdef CONFIG_IWLWIFI_P2P
|
||||
"enabled\n");
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_P2P enabled\n");
|
||||
#else
|
||||
"disabled\n");
|
||||
IWL_INFO(priv, "CONFIG_IWLWIFI_P2P disabled\n");
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -1569,8 +1569,7 @@ static struct iwl_op_mode *iwl_op_mode_dvm_start(struct iwl_trans *trans,
|
||||
|
||||
SET_IEEE80211_DEV(priv->hw, priv->trans->dev);
|
||||
|
||||
/* show what debugging capabilities we have */
|
||||
iwl_debug_config(priv);
|
||||
iwl_option_config(priv);
|
||||
|
||||
IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
|
||||
|
||||
|
@ -523,7 +523,7 @@ static inline const char *iwl_dvm_get_cmd_string(u8 cmd)
|
||||
void iwl_setup_deferred_work(struct iwl_priv *priv);
|
||||
int iwl_send_wimax_coex(struct iwl_priv *priv);
|
||||
int iwl_send_bt_env(struct iwl_priv *priv, u8 action, u8 type);
|
||||
void iwl_debug_config(struct iwl_priv *priv);
|
||||
void iwl_option_config(struct iwl_priv *priv);
|
||||
void iwl_set_hw_params(struct iwl_priv *priv);
|
||||
void iwl_init_context(struct iwl_priv *priv, u32 ucode_flags);
|
||||
int iwl_init_drv(struct iwl_priv *priv);
|
||||
|
Loading…
Reference in New Issue
Block a user