public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] platform: x86: hp_wireless: Inform the user if hp_wireless_input_setup()/add() fails
@ 2014-11-28 22:14 Giedrius Statkevicius
  2014-11-28 23:15 ` Borislav Petkov
  0 siblings, 1 reply; 8+ messages in thread
From: Giedrius Statkevicius @ 2014-11-28 22:14 UTC (permalink / raw)
  To: dvhart; +Cc: platform-driver-x86, linux-kernel, Giedrius Statkevicius

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@gmail.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");
+
 	return err;
 }
 
-- 
2.1.3


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-12-02 17:20 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-28 22:14 [PATCH] platform: x86: hp_wireless: Inform the user if hp_wireless_input_setup()/add() fails Giedrius Statkevicius
2014-11-28 23:15 ` Borislav Petkov
2014-11-28 23:48   ` Giedrius Statkevicius
2014-11-29  0:04     ` Borislav Petkov
2014-11-25 22:57       ` Darren Hart
2014-12-02 16:15         ` Giedrius Statkevicius
2014-12-02 17:19           ` Darren Hart
2014-12-01  7:22       ` Alex Hung

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox