From: Xinming Hu <[email protected]>

This patch increase the priority for some critical
messages.

Signed-off-by: Xinming Hu <[email protected]>
Signed-off-by: Amitkumar Karwar <[email protected]>
---
 drivers/net/wireless/marvell/mwifiex/pcie.c | 6 +++---
 drivers/net/wireless/marvell/mwifiex/sdio.c | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/net/wireless/marvell/mwifiex/pcie.c 
b/drivers/net/wireless/marvell/mwifiex/pcie.c
index 57750f5..5e15464 100644
--- a/drivers/net/wireless/marvell/mwifiex/pcie.c
+++ b/drivers/net/wireless/marvell/mwifiex/pcie.c
@@ -2148,14 +2148,14 @@ static irqreturn_t mwifiex_pcie_interrupt(int irq, void 
*context)
        struct mwifiex_adapter *adapter;
 
        if (!pdev) {
-               pr_debug("info: %s: pdev is NULL\n", (u8 *)pdev);
+               pr_err("info: %s: pdev is NULL\n", __func__);
                goto exit;
        }
 
        card = pci_get_drvdata(pdev);
        if (!card || !card->adapter) {
-               pr_debug("info: %s: card=%p adapter=%p\n", __func__, card,
-                        card ? card->adapter : NULL);
+               pr_err("info: %s: card=%p adapter=%p\n", __func__, card,
+                      card ? card->adapter : NULL);
                goto exit;
        }
        adapter = card->adapter;
diff --git a/drivers/net/wireless/marvell/mwifiex/sdio.c 
b/drivers/net/wireless/marvell/mwifiex/sdio.c
index 024306a..ec1e8c3 100644
--- a/drivers/net/wireless/marvell/mwifiex/sdio.c
+++ b/drivers/net/wireless/marvell/mwifiex/sdio.c
@@ -796,8 +796,8 @@ mwifiex_sdio_interrupt(struct sdio_func *func)
 
        card = sdio_get_drvdata(func);
        if (!card || !card->adapter) {
-               pr_debug("int: func=%p card=%p adapter=%p\n",
-                        func, card, card ? card->adapter : NULL);
+               pr_err("int: func=%p card=%p adapter=%p\n",
+                      func, card, card ? card->adapter : NULL);
                return;
        }
        adapter = card->adapter;
-- 
1.8.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to