diff options
author | Hans de Goede <hdegoede@redhat.com> | 2017-08-20 12:29:03 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2017-08-20 12:30:23 -0400 |
commit | d912366a59c5384df436fd007667d6e574128b44 (patch) | |
tree | 8accc485a8004ec6cfe3853dcb02da77f1a120da | |
parent | ec667683c532c93fb41e100e5d61a518971060e2 (diff) |
Input: soc_button_array - silence -ENOENT error on Dell XPS13 9365
The Dell XPS13 9365 has an INT33D2 ACPI node with no GPIOs, causing
the following error in dmesg:
[ 7.172275] soc_button_array: probe of INT33D2:00 failed with error -2
This commit silences this, by returning -ENODEV when there are no GPIOs.
BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=196679
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r-- | drivers/input/misc/soc_button_array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/misc/soc_button_array.c b/drivers/input/misc/soc_button_array.c index f600f3a7a3c6..23520df7650f 100644 --- a/drivers/input/misc/soc_button_array.c +++ b/drivers/input/misc/soc_button_array.c | |||
@@ -331,7 +331,7 @@ static int soc_button_probe(struct platform_device *pdev) | |||
331 | error = gpiod_count(dev, NULL); | 331 | error = gpiod_count(dev, NULL); |
332 | if (error < 0) { | 332 | if (error < 0) { |
333 | dev_dbg(dev, "no GPIO attached, ignoring...\n"); | 333 | dev_dbg(dev, "no GPIO attached, ignoring...\n"); |
334 | return error; | 334 | return -ENODEV; |
335 | } | 335 | } |
336 | 336 | ||
337 | priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); | 337 | priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); |