From: "Justin P. Mattock" <justinmattock@gmail.com>
To: "Justin P. Mattock" <justinmattock@gmail.com>
Cc: linux-acpi@vger.kernel.org, lenb@kernel.org, dhowells@redhat.com,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH]acpi:glue.c Fix warning: variable 'ret' set but not used
Date: Sat, 31 Jul 2010 11:50:35 -0700 [thread overview]
Message-ID: <4C54707B.4040008@gmail.com> (raw)
In-Reply-To: <1278033261-2733-1-git-send-email-justinmattock@gmail.com>
whats going on with this patch? havent heard anything on this.
> Fix a warning message generated by gcc:
> CC drivers/acpi/glue.o
> drivers/acpi/glue.c: In function 'acpi_bind_one':
> drivers/acpi/glue.c:163:7: warning: variable 'ret' set but not used
>
> Signed-off-by: Justin P. Mattock<justinmattock@gmail.com>
> Signed-off-by: David Howells<dhowells@redhat.com>
>
> ---
> drivers/acpi/glue.c | 14 +++++++++++---
> 1 files changed, 11 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/acpi/glue.c b/drivers/acpi/glue.c
> index 4af6301..23b16e6 100644
> --- a/drivers/acpi/glue.c
> +++ b/drivers/acpi/glue.c
> @@ -145,6 +145,7 @@ static int acpi_bind_one(struct device *dev, acpi_handle handle)
> {
> struct acpi_device *acpi_dev;
> acpi_status status;
> + int fn, pn;
>
> if (dev->archdata.acpi_handle) {
> dev_warn(dev, "Drivers changed 'acpi_handle'\n");
> @@ -160,12 +161,19 @@ static int acpi_bind_one(struct device *dev, acpi_handle handle)
>
> status = acpi_bus_get_device(handle,&acpi_dev);
> if (!ACPI_FAILURE(status)) {
> - int ret;
>
> - ret = sysfs_create_link(&dev->kobj,&acpi_dev->dev.kobj,
> + fn = sysfs_create_link(&dev->kobj,&acpi_dev->dev.kobj,
> "firmware_node");
> - ret = sysfs_create_link(&acpi_dev->dev.kobj,&dev->kobj,
> + pn = sysfs_create_link(&acpi_dev->dev.kobj,&dev->kobj,
> "physical_node");
> + if (fn || pn) {
> + dev_warn(&acpi_dev->dev,
> + "Failed to create link(s) to %s %s:"
> + " %d\n",
> + dev_driver_string(dev), dev_name(dev),
> + fn ?: pn);
> + return AE_ERROR;
> + }
> if (acpi_dev->wakeup.flags.valid) {
> device_set_wakeup_capable(dev, true);
> device_set_wakeup_enable(dev,
prev parent reply other threads:[~2010-07-31 18:50 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-07-02 1:14 [PATCH]acpi:glue.c Fix warning: variable 'ret' set but not used Justin P. Mattock
2010-07-31 18:50 ` Justin P. Mattock [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=4C54707B.4040008@gmail.com \
--to=justinmattock@gmail.com \
--cc=dhowells@redhat.com \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).