iwlwifi: remove IWL_DL_LED
no need to have a separate debug level for a single debug print (which is pretty much useless anyway). remove them both. Signed-off-by: Eliad Peller <eliadx.peller@intel.com> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
This commit is contained in:
parent
dc28e12f21
commit
863558168d
|
@ -134,8 +134,6 @@ static int iwl_led_cmd(struct iwl_priv *priv,
|
||||||
on = IWL_LED_SOLID;
|
on = IWL_LED_SOLID;
|
||||||
}
|
}
|
||||||
|
|
||||||
IWL_DEBUG_LED(priv, "Led blink time compensation=%u\n",
|
|
||||||
priv->cfg->base_params->led_compensation);
|
|
||||||
led_cmd.on = iwl_blink_compensation(priv, on,
|
led_cmd.on = iwl_blink_compensation(priv, on,
|
||||||
priv->cfg->base_params->led_compensation);
|
priv->cfg->base_params->led_compensation);
|
||||||
led_cmd.off = iwl_blink_compensation(priv, off,
|
led_cmd.off = iwl_blink_compensation(priv, off,
|
||||||
|
|
|
@ -163,7 +163,6 @@ do { \
|
||||||
#define IWL_DL_FW 0x00010000
|
#define IWL_DL_FW 0x00010000
|
||||||
#define IWL_DL_RF_KILL 0x00020000
|
#define IWL_DL_RF_KILL 0x00020000
|
||||||
#define IWL_DL_FW_ERRORS 0x00040000
|
#define IWL_DL_FW_ERRORS 0x00040000
|
||||||
#define IWL_DL_LED 0x00080000
|
|
||||||
/* 0x00F00000 - 0x00100000 */
|
/* 0x00F00000 - 0x00100000 */
|
||||||
#define IWL_DL_RATE 0x00100000
|
#define IWL_DL_RATE 0x00100000
|
||||||
#define IWL_DL_CALIB 0x00200000
|
#define IWL_DL_CALIB 0x00200000
|
||||||
|
@ -189,7 +188,6 @@ do { \
|
||||||
#define IWL_DEBUG_RX(p, f, a...) IWL_DEBUG(p, IWL_DL_RX, f, ## a)
|
#define IWL_DEBUG_RX(p, f, a...) IWL_DEBUG(p, IWL_DL_RX, f, ## a)
|
||||||
#define IWL_DEBUG_TX(p, f, a...) IWL_DEBUG(p, IWL_DL_TX, f, ## a)
|
#define IWL_DEBUG_TX(p, f, a...) IWL_DEBUG(p, IWL_DL_TX, f, ## a)
|
||||||
#define IWL_DEBUG_ISR(p, f, a...) IWL_DEBUG(p, IWL_DL_ISR, f, ## a)
|
#define IWL_DEBUG_ISR(p, f, a...) IWL_DEBUG(p, IWL_DL_ISR, f, ## a)
|
||||||
#define IWL_DEBUG_LED(p, f, a...) IWL_DEBUG(p, IWL_DL_LED, f, ## a)
|
|
||||||
#define IWL_DEBUG_WEP(p, f, a...) IWL_DEBUG(p, IWL_DL_WEP, f, ## a)
|
#define IWL_DEBUG_WEP(p, f, a...) IWL_DEBUG(p, IWL_DL_WEP, f, ## a)
|
||||||
#define IWL_DEBUG_HC(p, f, a...) IWL_DEBUG(p, IWL_DL_HCMD, f, ## a)
|
#define IWL_DEBUG_HC(p, f, a...) IWL_DEBUG(p, IWL_DL_HCMD, f, ## a)
|
||||||
#define IWL_DEBUG_QUOTA(p, f, a...) IWL_DEBUG(p, IWL_DL_QUOTA, f, ## a)
|
#define IWL_DEBUG_QUOTA(p, f, a...) IWL_DEBUG(p, IWL_DL_QUOTA, f, ## a)
|
||||||
|
|
Loading…
Reference in New Issue