Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752447AbaBKRrD (ORCPT ); Tue, 11 Feb 2014 12:47:03 -0500 Received: from mail-wi0-f178.google.com ([209.85.212.178]:34213 "EHLO mail-wi0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751572AbaBKRrB (ORCPT ); Tue, 11 Feb 2014 12:47:01 -0500 Date: Tue, 11 Feb 2014 17:46:54 +0000 From: Lee Jones To: Pawel Moll Cc: "arm@kernel.org" , "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" , Linus Walleij , Alexandre Courbot , Samuel Ortiz Subject: Re: [PATCH 05/12] GPIO: gpio-generic: Add label to platform data Message-ID: <20140211174654.GI15081@lee--X1> References: <1392138636-29240-1-git-send-email-pawel.moll@arm.com> <1392138636-29240-6-git-send-email-pawel.moll@arm.com> <20140211171721.GE15081@lee--X1> <1392139256.3380.45.camel@hornet> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1392139256.3380.45.camel@hornet> 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 > > > When registering more than one platform device, it is > > > useful to set the gpio chip label in the platform data. > > > > > > Cc: Linus Walleij > > > Cc: Alexandre Courbot > > > Cc: Samuel Ortiz > > > Cc: Lee Jones > > > Signed-off-by: Pawel Moll > > > --- > > > This patch has been already merged by Linux; it has been included > > > for completeness only. > > > > > > drivers/gpio/gpio-generic.c | 2 ++ > > > include/linux/basic_mmio_gpio.h | 1 + > > > 2 files changed, 3 insertions(+) > > > > > > diff --git a/drivers/gpio/gpio-generic.c b/drivers/gpio/gpio-generic.c > > > index d2196bf..8c778af 100644 > > > --- a/drivers/gpio/gpio-generic.c > > > +++ b/drivers/gpio/gpio-generic.c > > > @@ -531,6 +531,8 @@ static int bgpio_pdev_probe(struct platform_device *pdev) > > > return err; > > > > > > if (pdata) { > > > + if (pdata->label) > > > > Why is this check necessary? > > > > > + bgc->gc.label = pdata->label; > > Because bgc->gc.label is initialized to a default value in bgpio_init() > and I don't want to override it with NULL if there is no label passed in > the platform data. Ah ha, thanks for clarifying. -- Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog -- 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/