From: Avinash Patil Date: Tue, 22 Jan 2013 05:04:10 +0000 (-0800) Subject: mwifiex: fix typo in PCIe adapter NULL check X-Git-Tag: v3.8-rc6~20^2~10^2^2 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=83f0c6d1f502bd75bb4a9e31e8d64e59c6894ad1;p=~emulex%2Finfiniband.git mwifiex: fix typo in PCIe adapter NULL check Add missing "!" as we are supposed to check "!card->adapter" in PCIe suspend handler. Cc: "3.2+" Signed-off-by: Avinash Patil Signed-off-by: Bing Zhao Reviewed-by: Sergey V. Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/mwifiex/pcie.c b/drivers/net/wireless/mwifiex/pcie.c index 13fbc4eb159..b879e1338a5 100644 --- a/drivers/net/wireless/mwifiex/pcie.c +++ b/drivers/net/wireless/mwifiex/pcie.c @@ -161,7 +161,7 @@ static int mwifiex_pcie_suspend(struct pci_dev *pdev, pm_message_t state) if (pdev) { card = (struct pcie_service_card *) pci_get_drvdata(pdev); - if (!card || card->adapter) { + if (!card || !card->adapter) { pr_err("Card or adapter structure is not valid\n"); return 0; }