[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20141128231555.GA31468@pd.tnic>
Date: Sat, 29 Nov 2014 00:15:55 +0100
From: Borislav Petkov <bp@...en8.de>
To: Giedrius Statkevicius <giedriuswork@...il.com>
Cc: dvhart@...radead.org, platform-driver-x86@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] platform: x86: hp_wireless: Inform the user if
hp_wireless_input_setup()/add() fails
On Sat, Nov 29, 2014 at 12:14:27AM +0200, Giedrius Statkevicius wrote:
> In hpwl_add() there is a unused variable err to which we assign the
> result of hp_wireless_input_setup() but we don't do anything depending
> on the result so print out a message that informs the user if add()
> (hp_wireless_input_setup()) fails since acpi_device_probe() doesn't
> print anything in this case.
>
> Signed-off-by: Giedrius Statkevicius <giedriuswork@...il.com>
> ---
> drivers/platform/x86/hp-wireless.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/platform/x86/hp-wireless.c b/drivers/platform/x86/hp-wireless.c
> index 415348f..4e4cc8b 100644
> --- a/drivers/platform/x86/hp-wireless.c
> +++ b/drivers/platform/x86/hp-wireless.c
> @@ -85,6 +85,9 @@ static int hpwl_add(struct acpi_device *device)
> int err;
>
> err = hp_wireless_input_setup();
> + if (err)
> + pr_err("Failed to setup hp wireless hotkeys\n");
> +
I don't think there's need for that. Just do:
return hp_wireless_input_setup();
and drop err completely.
The upper layer which calls the ->add() method should propagate the
error properly.
--
Regards/Gruss,
Boris.
Sent from a fat crate under my desk. Formatting is fine.
--
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists