All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jarkko Sakkinen <jarkko.sakkinen-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
To: "Winkler, Tomas" <tomas.winkler-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: "Jérémy Lefaure"
	<jeremy.lefaure-tU7rkvAWjlwhT4uAktR2oQ@public.gmane.org>,
	"tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org"
	<tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>,
	"linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	"arnd-r2nGTMty4D4@public.gmane.org"
	<arnd-r2nGTMty4D4@public.gmane.org>
Subject: Re: [PATCH] tpm/tpm_crb: fix unused warnings on suspend/resume functions
Date: Tue, 28 Mar 2017 10:35:10 +0300	[thread overview]
Message-ID: <20170328073510.3cehco3bccn4wwkm@intel.com> (raw)
In-Reply-To: <5B8DA87D05A7694D9FA63FD143655C1B543C8D91-Jy8z56yoSI8MvF1YICWikbfspsVTdybXVpNB7YpNyf8@public.gmane.org>

On Tue, Mar 28, 2017 at 06:15:56AM +0000, Winkler, Tomas wrote:
> 
> 
> > 
> > On Tue, Mar 21, 2017 at 10:05:36PM +0000, Winkler, Tomas wrote:
> > > > On Thu, Mar 16, 2017 at 09:51:33PM -0400, Jérémy Lefaure wrote:
> > > > > When PM_SLEEP is disabled crb_pm_suspend and crb_pm_resume are
> > not
> > > > > used by SET_SYSTEM_SLEEP_PM_OPS even if PM is enabled:
> > > > >
> > > > > drvers/char/tpm/tpm_crb.c:540:12: warning: ‘crb_pm_suspend’
> > > > > defined but not used [-Wunused-function]  static int
> > > > > crb_pm_suspend(struct device *dev)
> > > > >             ^
> > > > > drivers/char/tpm/tpm_crb.c:551:12: warning: ‘crb_pm_resume’
> > > > > defined but not used [-Wunused-function]  static int
> > > > > crb_pm_resume(struct device *dev)
> > > > >             ^
> > > > >
> > > > > The preprocessor condition should be on CONFIG_PM_SLEEP, not on
> > > > CONFIG_PM.
> > > > > However, this patch fixes this warning by using __maybe_unused on
> > > > > function that are in the preprocessor condition.
> > > > >
> > > > > Signed-off-by: Jérémy Lefaure <jeremy.lefaure@lse.epita.fr>
> > > >
> > > > Thanks. Please include also linux-kernel@vger.kernel.org in the future.
> > > >
> > > > Reviewed-by: Jarkko Saskkinen <jarkko.sakkinen@linux.intel.com>
> > >
> > > We should go with Arnd's patch, which is actually the same,  but it
> > > was already reviewed and has better commit messages.
> > > Thanks
> > > Tomas
> > 
> > You are right about the commit message but where are the Reviewed-by tags?
> 
> Please add mine.
> 
> > [1]
> > 
> > [1] https://patchwork.kernel.org/patch/9633537/
> > 
> Tomas

I'll keep the existing patch at this point as I do not have time to
go through test cycle for another patch. I'm sorry but this came too
late.

/Jarkko

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
tpmdd-devel mailing list
tpmdd-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tpmdd-devel

WARNING: multiple messages have this Message-ID (diff)
From: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
To: "Winkler, Tomas" <tomas.winkler@intel.com>
Cc: "Jérémy Lefaure" <jeremy.lefaure@lse.epita.fr>,
	"tpmdd-devel@lists.sourceforge.net"
	<tpmdd-devel@lists.sourceforge.net>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"arnd@arndb.de" <arnd@arndb.de>
Subject: Re: [tpmdd-devel] [PATCH] tpm/tpm_crb: fix unused warnings on suspend/resume functions
Date: Tue, 28 Mar 2017 10:35:10 +0300	[thread overview]
Message-ID: <20170328073510.3cehco3bccn4wwkm@intel.com> (raw)
In-Reply-To: <5B8DA87D05A7694D9FA63FD143655C1B543C8D91@hasmsx108.ger.corp.intel.com>

On Tue, Mar 28, 2017 at 06:15:56AM +0000, Winkler, Tomas wrote:
> 
> 
> > 
> > On Tue, Mar 21, 2017 at 10:05:36PM +0000, Winkler, Tomas wrote:
> > > > On Thu, Mar 16, 2017 at 09:51:33PM -0400, Jérémy Lefaure wrote:
> > > > > When PM_SLEEP is disabled crb_pm_suspend and crb_pm_resume are
> > not
> > > > > used by SET_SYSTEM_SLEEP_PM_OPS even if PM is enabled:
> > > > >
> > > > > drvers/char/tpm/tpm_crb.c:540:12: warning: ‘crb_pm_suspend’
> > > > > defined but not used [-Wunused-function]  static int
> > > > > crb_pm_suspend(struct device *dev)
> > > > >             ^
> > > > > drivers/char/tpm/tpm_crb.c:551:12: warning: ‘crb_pm_resume’
> > > > > defined but not used [-Wunused-function]  static int
> > > > > crb_pm_resume(struct device *dev)
> > > > >             ^
> > > > >
> > > > > The preprocessor condition should be on CONFIG_PM_SLEEP, not on
> > > > CONFIG_PM.
> > > > > However, this patch fixes this warning by using __maybe_unused on
> > > > > function that are in the preprocessor condition.
> > > > >
> > > > > Signed-off-by: Jérémy Lefaure <jeremy.lefaure@lse.epita.fr>
> > > >
> > > > Thanks. Please include also linux-kernel@vger.kernel.org in the future.
> > > >
> > > > Reviewed-by: Jarkko Saskkinen <jarkko.sakkinen@linux.intel.com>
> > >
> > > We should go with Arnd's patch, which is actually the same,  but it
> > > was already reviewed and has better commit messages.
> > > Thanks
> > > Tomas
> > 
> > You are right about the commit message but where are the Reviewed-by tags?
> 
> Please add mine.
> 
> > [1]
> > 
> > [1] https://patchwork.kernel.org/patch/9633537/
> > 
> Tomas

I'll keep the existing patch at this point as I do not have time to
go through test cycle for another patch. I'm sorry but this came too
late.

/Jarkko

  parent reply	other threads:[~2017-03-28  7:35 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-17  1:51 [PATCH] tpm/tpm_crb: fix unused warnings on suspend/resume functions Jérémy Lefaure
     [not found] ` <20170317015133.2269-1-jeremy.lefaure-tU7rkvAWjlwhT4uAktR2oQ@public.gmane.org>
2017-03-21  8:03   ` Jarkko Sakkinen
2017-03-21  8:03     ` Jarkko Sakkinen
     [not found]     ` <20170321080353.oh2apppp37nchuw7-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2017-03-21 22:05       ` Winkler, Tomas
2017-03-21 22:05         ` [tpmdd-devel] " Winkler, Tomas
     [not found]         ` <5B8DA87D05A7694D9FA63FD143655C1B543B122D-Jy8z56yoSI8MvF1YICWikbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2017-03-23 15:51           ` Jarkko Sakkinen
2017-03-23 15:51             ` [tpmdd-devel] " Jarkko Sakkinen
     [not found]             ` <20170323155117.w6zsewdxc6eeti4b-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2017-03-28  6:15               ` Winkler, Tomas
2017-03-28  6:15                 ` [tpmdd-devel] " Winkler, Tomas
     [not found]                 ` <5B8DA87D05A7694D9FA63FD143655C1B543C8D91-Jy8z56yoSI8MvF1YICWikbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2017-03-28  7:35                   ` Jarkko Sakkinen [this message]
2017-03-28  7:35                     ` Jarkko Sakkinen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170328073510.3cehco3bccn4wwkm@intel.com \
    --to=jarkko.sakkinen-vuqaysv1563yd54fqh9/ca@public.gmane.org \
    --cc=arnd-r2nGTMty4D4@public.gmane.org \
    --cc=jeremy.lefaure-tU7rkvAWjlwhT4uAktR2oQ@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=tomas.winkler-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    --cc=tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.