Return-path: Received: from wolverine01.qualcomm.com ([199.106.114.254]:38162 "EHLO wolverine01.qualcomm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932221Ab1JaJyF (ORCPT ); Mon, 31 Oct 2011 05:54:05 -0400 Message-ID: <4EAE7038.7010306@qca.qualcomm.com> (sfid-20111031_105408_440920_0E2B3305) Date: Mon, 31 Oct 2011 15:24:00 +0530 From: Raja Mani MIME-Version: 1.0 To: Kalle Valo CC: Subject: Re: [PATCH 5/7] ath6kl: Invoke wow suspend/resume calls during PM operations References: <1319539047-8756-1-git-send-email-rmani@qca.qualcomm.com> <1319539047-8756-6-git-send-email-rmani@qca.qualcomm.com> <4EAAAAF6.3090906@qca.qualcomm.com> In-Reply-To: <4EAAAAF6.3090906@qca.qualcomm.com> Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Sender: linux-wireless-owner@vger.kernel.org List-ID: On Friday 28 October 2011 06:45 PM, Kalle Valo wrote: > On 10/25/2011 01:37 PM, rmani@qca.qualcomm.com wrote: >> From: Raja Mani >> >> Link ath6kl's wow suspend/resume functions with the callback functions >> registered with the CFG layer for suspend and resume operation. > > [..] > >> --- a/drivers/net/wireless/ath/ath6kl/cfg80211.c >> +++ b/drivers/net/wireless/ath/ath6kl/cfg80211.c >> @@ -1606,6 +1606,19 @@ static int ar6k_cfg80211_suspend(struct wiphy *wiphy, >> struct cfg80211_wowlan *wow) >> { >> struct ath6kl *ar = wiphy_priv(wiphy); >> + int ret; >> + >> + if (wow&& ath6kl_cfg80211_ready(ar)&& >> + test_bit(CONNECTED,&ar->flag)&& >> + ath6kl_hif_keep_pwr_caps(ar)) { >> + >> + /* Flush all non control pkts in Tx path */ >> + ath6kl_tx_data_cleanup(ar); >> + >> + ret = ath6kl_pm_wow_suspend(ar, wow); >> + if (ret) >> + return ret; >> + } > > This is now confusing. Some of the suspend logic is now in sdio.c and > some here. It's better to have everything in one place, that is in > sdio.c. We just need to add an interface so that sdio.c can request the > correct suspend mode. Do you want me to keep ath6kl_pm_wow_suspend() implementation in cfg80211.c file and move only above code to ath6kl_sdio_suspend() ? > > Kalle