From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932724AbcKYTi6 (ORCPT ); Fri, 25 Nov 2016 14:38:58 -0500 Received: from mail-pg0-f67.google.com ([74.125.83.67]:35314 "EHLO mail-pg0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932180AbcKYTil (ORCPT ); Fri, 25 Nov 2016 14:38:41 -0500 Date: Fri, 25 Nov 2016 11:38:37 -0800 From: Dmitry Torokhov To: Benjamin Tissoires Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 1/2] Input - soc_button_array: use gpio_is_valid() Message-ID: <20161125193837.GB15266@dtor-ws> References: <1480091802-14482-1-git-send-email-benjamin.tissoires@redhat.com> <1480091802-14482-2-git-send-email-benjamin.tissoires@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1480091802-14482-2-git-send-email-benjamin.tissoires@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Nov 25, 2016 at 05:36:41PM +0100, Benjamin Tissoires wrote: > gpio_keys will later use gpio_is_valid(). To match the actual > behavior, we should use it here too. > > Signed-off-by: Benjamin Tissoires Applied, thank you. > > --- > > no changes in v3 > > Changes in v2: > - fixed gpio_is_valid(gpio) -> !gpio_is_valid(gpio) > --- > drivers/input/misc/soc_button_array.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/input/misc/soc_button_array.c b/drivers/input/misc/soc_button_array.c > index c14b827..bbd433c 100644 > --- a/drivers/input/misc/soc_button_array.c > +++ b/drivers/input/misc/soc_button_array.c > @@ -17,6 +17,7 @@ > #include > #include > #include > +#include > #include > > /* > @@ -92,7 +93,7 @@ soc_button_device_create(struct platform_device *pdev, > continue; > > gpio = soc_button_lookup_gpio(&pdev->dev, info->acpi_index); > - if (gpio < 0) > + if (!gpio_is_valid(gpio)) > continue; > > gpio_keys[n_buttons].type = info->event_type; > -- > 2.7.4 > -- Dmitry