Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 91442431 authored by Xinming Hu's avatar Xinming Hu Committed by Kalle Valo
Browse files

mwifiex: increase priority for critical message



This patch increase the priority for some critical
messages.

Signed-off-by: default avatarXinming Hu <huxm@marvell.com>
Signed-off-by: default avatarAmitkumar Karwar <akarwar@marvell.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent fdb1e28e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2129,13 +2129,13 @@ 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,
		pr_err("info: %s: card=%p adapter=%p\n", __func__, card,
		       card ? card->adapter : NULL);
		goto exit;
	}
+2 −2
Original line number Diff line number Diff line
@@ -796,7 +796,7 @@ 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",
		pr_err("int: func=%p card=%p adapter=%p\n",
		       func, card, card ? card->adapter : NULL);
		return;
	}