module: Convert symbol namespace to string literal
[linux.git] / drivers / net / wireless / intel / iwlwifi / dvm / led.h
blob5038fc378a1f78b0ade0e4a87486f16ac04be1de
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /******************************************************************************
4 * Copyright(c) 2003 - 2014 Intel Corporation. All rights reserved.
5 *****************************************************************************/
7 #ifndef __iwl_leds_h__
8 #define __iwl_leds_h__
11 struct iwl_priv;
13 #define IWL_LED_SOLID 11
14 #define IWL_DEF_LED_INTRVL cpu_to_le32(1000)
16 #define IWL_LED_ACTIVITY (0<<1)
17 #define IWL_LED_LINK (1<<1)
19 #ifdef CONFIG_IWLWIFI_LEDS
20 void iwlagn_led_enable(struct iwl_priv *priv);
21 void iwl_leds_init(struct iwl_priv *priv);
22 void iwl_leds_exit(struct iwl_priv *priv);
23 #else
24 static inline void iwlagn_led_enable(struct iwl_priv *priv)
27 static inline void iwl_leds_init(struct iwl_priv *priv)
30 static inline void iwl_leds_exit(struct iwl_priv *priv)
33 #endif
35 #endif /* __iwl_leds_h__ */