Return-path: Received: from mail-gw2-out.broadcom.com ([216.31.210.63]:39580 "EHLO mail-gw2-out.broadcom.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752103AbbALQYo (ORCPT ); Mon, 12 Jan 2015 11:24:44 -0500 Message-ID: <54B3F548.6080408@broadcom.com> (sfid-20150112_172532_946415_50281CDC) Date: Mon, 12 Jan 2015 17:24:40 +0100 From: Arend van Spriel MIME-Version: 1.0 To: Sergei Shtylyov CC: "Fu, Zhonghui" , , Franky Lin , , , , , , , , , , "linux-kernel@vger.kernel.org" Subject: Re: [PATCH] brcmfmac: avoid duplicated suspend/resume operation References: <54B36C88.3030609@linux.intel.com> <54B3D4FC.1090806@cogentembedded.com> In-Reply-To: <54B3D4FC.1090806@cogentembedded.com> Content-Type: text/plain; charset="UTF-8"; format=flowed Sender: linux-wireless-owner@vger.kernel.org List-ID: On 01/12/15 15:06, Sergei Shtylyov wrote: > Hello. > > On 1/12/2015 9:41 AM, Fu, Zhonghui wrote: > >> From 8685c3c2746b4275fc808d9db23c364b2f54b52a Mon Sep 17 00:00:00 2001 >> From: Zhonghui Fu >> Date: Mon, 12 Jan 2015 14:25:46 +0800 >> Subject: [PATCH] brcmfmac: avoid duplicated suspend/resume operation > > The lines above are not needed. > >> WiFi chip has 2 SDIO functions, and PM core will trigger >> twice suspend/resume operations for one WiFi chip to do >> the same things. This patch avoid this case. > >> Acked-by: Arend van Spriel >> Acked-by: Sergei Shtylyov >> Signed-off-by: Zhonghui Fu >> --- >> drivers/net/wireless/brcm80211/brcmfmac/bcmsdh.c | 21 >> +++++++++++++++++---- >> 1 files changed, 17 insertions(+), 4 deletions(-) > >> diff --git a/drivers/net/wireless/brcm80211/brcmfmac/bcmsdh.c >> b/drivers/net/wireless/brcm80211/brcmfmac/bcmsdh.c >> index 9880dae..8f71485 100644 >> --- a/drivers/net/wireless/brcm80211/brcmfmac/bcmsdh.c >> +++ b/drivers/net/wireless/brcm80211/brcmfmac/bcmsdh.c >> @@ -1070,7 +1070,7 @@ static int brcmf_ops_sdio_probe(struct sdio_func >> *func, >> */ >> if ((sdio_get_host_pm_caps(sdiodev->func[1]) & MMC_PM_KEEP_POWER) && >> ((sdio_get_host_pm_caps(sdiodev->func[1]) & MMC_PM_WAKE_SDIO_IRQ) || >> - (sdiodev->pdata && sdiodev->pdata->oob_irq_supported))) >> + (sdiodev->pdata->oob_irq_supported))) > > Inner parens not needed on this line. Well, actually this patch should not affect those line as it would reintroduce a recently fixed issue. Regards, Arend > [...] > > WBR, Sergei >