mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Toshi Kani <toshi.kani@hp.com>
To: "Rafael J. Wysocki" <rjw@sisk.pl>
Cc: linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org,
	isimatu.yasuaki@jp.fujitsu.com
Subject: Re: [PATCH] ACPI: Unbind ACPI drv when probe failed
Date: Thu, 07 Feb 2013 15:12:26 -0700	[thread overview]
Message-ID: <1360275146.3869.0.camel@misato.fc.hp.com> (raw)
In-Reply-To: <1992165.bgMBd9nLM4@vostro.rjw.lan>

On Thu, 2013-02-07 at 23:18 +0100, Rafael J. Wysocki wrote:
> On Thursday, February 07, 2013 02:19:13 PM Toshi Kani wrote:
> > When acpi_device_install_notify_handler() failed in acpi_device_probe(),
> > it calls acpi_drv->ops.remove() and fails the probe.  However, the ACPI
> > driver is left bound to the acpi_device.  Fix it by clearing the driver
> > and driver_data fields.
> > 
> > Signed-off-by: Toshi Kani <toshi.kani@hp.com>
> > ---
> > This patch is based on linux-pm.git/bleeding-edge.
> 
> Good catch, thanks.  I'm going to apply it.

Great!  Thanks,
-Toshi


> 
> Rafael
> 
> 
> > ---
> >  drivers/acpi/scan.c |    2 ++
> >  1 file changed, 2 insertions(+)
> > 
> > diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c
> > index d6caf1d..39659bb 100644
> > --- a/drivers/acpi/scan.c
> > +++ b/drivers/acpi/scan.c
> > @@ -627,6 +627,8 @@ static int acpi_device_probe(struct device * dev)
> >  			if (ret) {
> >  				if (acpi_drv->ops.remove)
> >  					acpi_drv->ops.remove(acpi_dev);
> > +				acpi_dev->driver = NULL;
> > +				acpi_dev->driver_data = NULL;
> >  				return ret;
> >  			}
> >  		}



      reply	other threads:[~2013-02-07 22:23 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-07 21:19 Toshi Kani
2013-02-07 22:18 ` Rafael J. Wysocki
2013-02-07 22:12   ` Toshi Kani [this message]

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=1360275146.3869.0.camel@misato.fc.hp.com \
    --to=toshi.kani@hp.com \
    --cc=isimatu.yasuaki@jp.fujitsu.com \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rjw@sisk.pl \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome