Commit 808ff697 authored by Reinette Chatre's avatar Reinette Chatre Committed by John W. Linville

iwlwifi: correct log level when error occurs

user needs to see this message even if debugging disabled
Signed-off-by: default avatarReinette Chatre <reinette.chatre@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 18d426c4
...@@ -3359,7 +3359,7 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -3359,7 +3359,7 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
/* amp init */ /* amp init */
err = priv->cfg->ops->lib->apm_ops.init(priv); err = priv->cfg->ops->lib->apm_ops.init(priv);
if (err < 0) { if (err < 0) {
IWL_DEBUG_INFO(priv, "Failed to init APMG\n"); IWL_ERR(priv, "Failed to init APMG\n");
goto out_iounmap; goto out_iounmap;
} }
/***************** /*****************
......
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