Received: by 2002:a05:6a10:22f:0:0:0:0 with SMTP id 15csp628669pxk; Thu, 3 Sep 2020 08:37:22 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyVI92yDN1B1D12GQDusLitdikfPSV1Y0yNhYrsYN/hiC1jt7u3vN4R95CL9s0MtVnXkVsC X-Received: by 2002:aa7:d4cb:: with SMTP id t11mr3641108edr.223.1599147442761; Thu, 03 Sep 2020 08:37:22 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1599147442; cv=none; d=google.com; s=arc-20160816; b=09yloj3K9X35cijWPRSuDOo/TVeFhlsS/VUwHs5Cit3MetqPln5UndtrGsG8eB5I+R o6+QPMHRwVlwn6tpRZYBF6boTB4oiIHYG0pSg1qdEa4VzMp76IJuI7MYEYrutUXdGvUy tgYC2zRaG8eQHtUxWQzvP0m6o6ndB9Au40YIamB1ao+N9wWKv1vH/cY/5LYnZRZQ7/vD o1Dod2inNEO0OTOxRqB6I8/WogRGxvpSkqhyBBI+VJOoodrMiwXi5VQ/DMV4dj0aa1xt MrMfWqbAZOi8l+w6+Os/+Ectpv9f4XZG3xMSbXJ99HX2hEk3Hi4V+jMRsCUDHM/zvdOe 6WUQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=cCVKT1H2iKrOowKdoPI2ZeZuZdE6X39uJ1XKUXHTVfM=; b=YwNLQv+PX/GANghWzY/LksCQ3UMa54xZ4k7rzo7uFomRRmrwbIgBPHJ4wAkp94y9V/ K4OqpxmPlfS/PEvdotYdwC7+AO2sVqMymVVIkaTKo+kKztYrIi3BC60r+1OhcRppcvK4 md0+fSOM+Se3nsBqsP6jZTq07o+4r2gdxUtklDieOhIxHXonUwKhrjI47ptW2CJHOH1d U/UEbodeQ4gdg1O1O29lesCczR0K26Kfpj+X0mN5XWiW8u61pgY+L5viYSN9q/TCeytP 4r/uO9JIGtbpdcpcdSNC4Q2XfiSpt66B+Y1N+KTRboA/rZ9bYx2tCJUEVZAjCTfat14r jp8g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id y19si2213051eje.337.2020.09.03.08.37.00; Thu, 03 Sep 2020 08:37:22 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728486AbgICPeL (ORCPT + 99 others); Thu, 3 Sep 2020 11:34:11 -0400 Received: from netrider.rowland.org ([192.131.102.5]:41009 "HELO netrider.rowland.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1728320AbgICPeJ (ORCPT ); Thu, 3 Sep 2020 11:34:09 -0400 Received: (qmail 663113 invoked by uid 1000); 3 Sep 2020 11:34:08 -0400 Date: Thu, 3 Sep 2020 11:34:08 -0400 From: Alan Stern To: Paul Cercueil Cc: Greg Kroah-Hartman , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 01/20] usb/host: ohci-platform: Use pm_ptr() macro Message-ID: <20200903153408.GB662845@rowland.harvard.edu> References: <20200903112554.34263-1-paul@crapouillou.net> <20200903112554.34263-2-paul@crapouillou.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200903112554.34263-2-paul@crapouillou.net> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Sep 03, 2020 at 01:25:35PM +0200, Paul Cercueil wrote: > Use the newly introduced pm_ptr() macro, and mark the suspend/resume > functions __maybe_unused. These functions can then be moved outside the > CONFIG_PM_SUSPEND block, and the compiler can then process them and > detect build failures independently of the config. If unused, they will > simply be discarded by the compiler. > > Signed-off-by: Paul Cercueil > --- > drivers/usb/host/ohci-platform.c | 19 ++++++++----------- > 1 file changed, 8 insertions(+), 11 deletions(-) > > diff --git a/drivers/usb/host/ohci-platform.c b/drivers/usb/host/ohci-platform.c > index 4a8456f12a73..21400d7d8b0a 100644 > --- a/drivers/usb/host/ohci-platform.c > +++ b/drivers/usb/host/ohci-platform.c > @@ -176,22 +176,21 @@ static int ohci_platform_probe(struct platform_device *dev) > if (pdata->num_ports) > ohci->num_ports = pdata->num_ports; > > -#ifndef CONFIG_USB_OHCI_BIG_ENDIAN_MMIO > - if (ohci->flags & OHCI_QUIRK_BE_MMIO) { > + if (!IS_ENABLED(CONFIG_USB_OHCI_BIG_ENDIAN_MMIO) && > + ohci->flags & OHCI_QUIRK_BE_MMIO) { > dev_err(&dev->dev, > "Error: CONFIG_USB_OHCI_BIG_ENDIAN_MMIO not set\n"); > err = -EINVAL; > goto err_reset; > } > -#endif > -#ifndef CONFIG_USB_OHCI_BIG_ENDIAN_DESC > - if (ohci->flags & OHCI_QUIRK_BE_DESC) { > + > + if (!IS_ENABLED(CONFIG_USB_OHCI_BIG_ENDIAN_DESC) && > + ohci->flags & OHCI_QUIRK_BE_DESC) { > dev_err(&dev->dev, > "Error: CONFIG_USB_OHCI_BIG_ENDIAN_DESC not set\n"); > err = -EINVAL; > goto err_reset; > } > -#endif > > pm_runtime_set_active(&dev->dev); > pm_runtime_enable(&dev->dev); The changes above don't seem to have any connection with the patch description. Please don't mix multiple changes in a single patch. The rest of the patch is okay. Alan Stern > @@ -267,8 +266,7 @@ static int ohci_platform_remove(struct platform_device *dev) > return 0; > } > > -#ifdef CONFIG_PM_SLEEP > -static int ohci_platform_suspend(struct device *dev) > +static int __maybe_unused ohci_platform_suspend(struct device *dev) > { > struct usb_hcd *hcd = dev_get_drvdata(dev); > struct usb_ohci_pdata *pdata = dev->platform_data; > @@ -286,7 +284,7 @@ static int ohci_platform_suspend(struct device *dev) > return ret; > } > > -static int ohci_platform_resume(struct device *dev) > +static int __maybe_unused ohci_platform_resume(struct device *dev) > { > struct usb_hcd *hcd = dev_get_drvdata(dev); > struct usb_ohci_pdata *pdata = dev_get_platdata(dev); > @@ -306,7 +304,6 @@ static int ohci_platform_resume(struct device *dev) > > return 0; > } > -#endif /* CONFIG_PM_SLEEP */ > > static const struct of_device_id ohci_platform_ids[] = { > { .compatible = "generic-ohci", }, > @@ -332,7 +329,7 @@ static struct platform_driver ohci_platform_driver = { > .shutdown = usb_hcd_platform_shutdown, > .driver = { > .name = "ohci-platform", > - .pm = &ohci_platform_pm_ops, > + .pm = pm_ptr(&ohci_platform_pm_ops), > .of_match_table = ohci_platform_ids, > } > }; > -- > 2.28.0 >