Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753097AbaLJBM7 (ORCPT ); Tue, 9 Dec 2014 20:12:59 -0500 Received: from mga02.intel.com ([134.134.136.20]:9756 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752221AbaLJBM6 (ORCPT ); Tue, 9 Dec 2014 20:12:58 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,691,1406617200"; d="scan'208";a="496365080" Message-ID: <54879E08.7030108@intel.com> Date: Wed, 10 Dec 2014 02:12:40 +0100 From: "Rafael J. Wysocki" Organization: Intel Technology Poland Sp. z o. o., KRS 101882, ul. Slowackiego 173, 80-298 Gdansk User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Bryan Wu , Fabio Estevam CC: Grant Likely , Jean-Michel Hautbois , Fabio Estevam , Linux LED Subsystem , lkml Subject: Re: [PATCH] leds: leds-gpio: Fix the "default-state" property check References: <1418142714-29794-1-git-send-email-fabio.estevam@freescale.com> In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 12/9/2014 8:13 PM, Bryan Wu wrote: > On Tue, Dec 9, 2014 at 8:31 AM, Fabio Estevam > wrote: >> Commit a43f2cbbb009f9 ("leds: leds-gpio: Make use of device property API") >> caused a regression by reading the incorrect string for the "default-state" >> property. >> >> Fix the property string check to restore the original behaviour. >> >> Fixes: a43f2cbbb009 (leds: leds-gpio: Make use of device property API) > Thanks, please take my Ack > Acked-by: Bryan Wu > > I think Rafael will take this fix with other patches through his tree. Yes, I will, thanks! And sorry for the breakage ... > >> Reported-by: Jean-Michel Hautbois >> Signed-off-by: Fabio Estevam >> --- >> drivers/leds/leds-gpio.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drivers/leds/leds-gpio.c b/drivers/leds/leds-gpio.c >> index 8a8ba11..7ea1ea42 100644 >> --- a/drivers/leds/leds-gpio.c >> +++ b/drivers/leds/leds-gpio.c >> @@ -203,7 +203,7 @@ static struct gpio_leds_priv *gpio_leds_create(struct platform_device *pdev) >> fwnode_property_read_string(child, "linux,default-trigger", >> &led.default_trigger); >> >> - if (!fwnode_property_read_string(child, "linux,default_state", >> + if (!fwnode_property_read_string(child, "default-state", >> &state)) { >> if (!strcmp(state, "keep")) >> led.default_state = LEDS_GPIO_DEFSTATE_KEEP; >> -- >> 1.9.1 >> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/