From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brian Norris Subject: Re: [PATCH] ath10k: move pci suspend/resume functions Date: Thu, 2 Nov 2017 10:10:18 -0700 Message-ID: <20171102171017.GA11081@google.com> References: <20171102110903.2886660-1-arnd@arndb.de> <87mv44ln5v.fsf@qca.qualcomm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Kalle Valo , Ryan Hsu , Govind Singh , Srinivas Kandagatla , Ashok Raj Nagarajan , Ben Greear , Colin Ian King , "ath10k@lists.infradead.org" , "linux-wireless@vger.kernel.org" , "netdev@vger.kernel.org" , "linux-kernel@vger.kernel.org" To: Arnd Bergmann Return-path: Content-Disposition: inline In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Thu, Nov 02, 2017 at 04:40:57PM +0100, Arnd Bergmann wrote: > On Thu, Nov 2, 2017 at 4:23 PM, Kalle Valo wrote: > > Brian has already fixed this, please check that: > > > > https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git/commit/?h=ath-next&id=20665a9076d48e9abd9a2db13d307f58f7ef6647 > > > > But apparently I forgot to merge ath-next to wireless-drivers-next, will > > do that soon. > > Yes, Brian's version is better. I considered the same, but wasn't sure > it was safe. Yes, it's safe. The code is still basically dead, since the mac80211 ops get dropped with !CONFIG_PM (so no one calls the *_hif_{suspend,resume}() functions), but at least we have fewer #ifdef's. Brian