All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: Grygorii Strashko <grygorii.strashko@ti.com>,
	linux-input@vger.kernel.org, nsekhar@ti.com,
	linux-kernel@vger.kernel.org, lkp@01.org
Subject: Re: [PATCH] input: serio: drop warnings in case of EPROBE_DEFER from serio_find_driver()
Date: Sat, 16 Jan 2016 10:36:36 -0800	[thread overview]
Message-ID: <20160116183636.GD9203@dtor-ws> (raw)
In-Reply-To: <9158432.BHbKetFqR6@vostro.rjw.lan>

On Fri, Jan 15, 2016 at 09:53:14PM +0100, Rafael J. Wysocki wrote:
> On Friday, January 15, 2016 08:01:15 PM Grygorii Strashko wrote:
> > Now serio_find_driver() will print warnings in case device_attach()
> > returns -EPROBE_DEFER. Those warnings are obsolete, in genral, because:
> > - DD core can report the same if required
> > - since commit 013c074f8642 ("PM / sleep: prohibit devices probing
> > during suspend/hibernation") the devices probing is prohibited during
> > System suspend and deferred device will be carefully reprobed once
> > Resume is finished.
> > 
> > Hence, drop warnings in case of EPROBE_DEFER from serio_find_driver().
> > 
> > Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> > Cc: Rafael J. Wysocki <rjw@rjwysocki.net>
> > Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
> 
> Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

Applied, thank you.

> 
> > ---
> >  drivers/input/serio/serio.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/drivers/input/serio/serio.c b/drivers/input/serio/serio.c
> > index 8f82897..1ca7f55 100644
> > --- a/drivers/input/serio/serio.c
> > +++ b/drivers/input/serio/serio.c
> > @@ -134,7 +134,7 @@ static void serio_find_driver(struct serio *serio)
> >  	int error;
> >  
> >  	error = device_attach(&serio->dev);
> > -	if (error < 0)
> > +	if (error < 0 && error != -EPROBE_DEFER)
> >  		dev_warn(&serio->dev,
> >  			 "device_attach() failed for %s (%s), error: %d\n",
> >  			 serio->phys, serio->name, error);
> > 
> 
> -- 
> I speak only for myself.
> Rafael J. Wysocki, Intel Open Source Technology Center.

-- 
Dmitry

WARNING: multiple messages have this Message-ID (diff)
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: lkp@lists.01.org
Subject: Re: [PATCH] input: serio: drop warnings in case of EPROBE_DEFER from serio_find_driver()
Date: Sat, 16 Jan 2016 10:36:36 -0800	[thread overview]
Message-ID: <20160116183636.GD9203@dtor-ws> (raw)
In-Reply-To: <9158432.BHbKetFqR6@vostro.rjw.lan>

[-- Attachment #1: Type: text/plain, Size: 1688 bytes --]

On Fri, Jan 15, 2016 at 09:53:14PM +0100, Rafael J. Wysocki wrote:
> On Friday, January 15, 2016 08:01:15 PM Grygorii Strashko wrote:
> > Now serio_find_driver() will print warnings in case device_attach()
> > returns -EPROBE_DEFER. Those warnings are obsolete, in genral, because:
> > - DD core can report the same if required
> > - since commit 013c074f8642 ("PM / sleep: prohibit devices probing
> > during suspend/hibernation") the devices probing is prohibited during
> > System suspend and deferred device will be carefully reprobed once
> > Resume is finished.
> > 
> > Hence, drop warnings in case of EPROBE_DEFER from serio_find_driver().
> > 
> > Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> > Cc: Rafael J. Wysocki <rjw@rjwysocki.net>
> > Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
> 
> Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

Applied, thank you.

> 
> > ---
> >  drivers/input/serio/serio.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/drivers/input/serio/serio.c b/drivers/input/serio/serio.c
> > index 8f82897..1ca7f55 100644
> > --- a/drivers/input/serio/serio.c
> > +++ b/drivers/input/serio/serio.c
> > @@ -134,7 +134,7 @@ static void serio_find_driver(struct serio *serio)
> >  	int error;
> >  
> >  	error = device_attach(&serio->dev);
> > -	if (error < 0)
> > +	if (error < 0 && error != -EPROBE_DEFER)
> >  		dev_warn(&serio->dev,
> >  			 "device_attach() failed for %s (%s), error: %d\n",
> >  			 serio->phys, serio->name, error);
> > 
> 
> -- 
> I speak only for myself.
> Rafael J. Wysocki, Intel Open Source Technology Center.

-- 
Dmitry

  reply	other threads:[~2016-01-16 18:36 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-15 18:01 [PATCH] input: serio: drop warnings in case of EPROBE_DEFER from serio_find_driver() Grygorii Strashko
2016-01-15 18:01 ` Grygorii Strashko
2016-01-15 18:01 ` Grygorii Strashko
2016-01-15 20:53 ` Rafael J. Wysocki
2016-01-15 20:53   ` Rafael J. Wysocki
2016-01-16 18:36   ` Dmitry Torokhov [this message]
2016-01-16 18:36     ` Dmitry Torokhov

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=20160116183636.GD9203@dtor-ws \
    --to=dmitry.torokhov@gmail.com \
    --cc=grygorii.strashko@ti.com \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lkp@01.org \
    --cc=nsekhar@ti.com \
    --cc=rjw@rjwysocki.net \
    /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.