From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Andrew F. Davis" Subject: Re: [PATCH v5 4/4] gpio: tps65086: Add GPO driver for the TPS65086 PMIC Date: Fri, 4 Dec 2015 10:11:29 -0600 Message-ID: <5661BB31.5020907@ti.com> References: <201512020445.59TmUa1O%fengguang.wu@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from arroyo.ext.ti.com ([192.94.94.40]:35529 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754311AbbLDQLr (ORCPT ); Fri, 4 Dec 2015 11:11:47 -0500 In-Reply-To: <201512020445.59TmUa1O%fengguang.wu@intel.com> Sender: linux-gpio-owner@vger.kernel.org List-Id: linux-gpio@vger.kernel.org To: kbuild test robot Cc: kbuild-all@01.org, Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Linus Walleij , Alexandre Courbot , Samuel Ortiz , Lee Jones , Liam Girdwood , Mark Brown , devicetree@vger.kernel.org, linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org On 12/01/2015 02:16 PM, kbuild test robot wrote: > Hi Andrew, > > [auto build test ERROR on next-20151127] > [cannot apply to ljones-mfd/for-mfd-next gpio/for-next v4.4-rc3 v4.4-rc2 v4.4-rc1 v4.4-rc3] > > url: https://github.com/0day-ci/linux/commits/Andrew-F-Davis/Documentation-tps65086-Add-DT-bindings-for-the-TPS65086-PMIC/20151202-024903 > config: i386-allmodconfig (attached as .config) > reproduce: > # save the attached .config to linux build tree > make ARCH=i386 > > All errors (new ones prefixed by >>): > > drivers/gpio/gpio-tps65086.c: In function 'tps65086_gpio_probe': >>> drivers/gpio/gpio-tps65086.c:106:12: error: 'struct gpio_chip' has no member named 'parent' > gpio->chip.parent = gpio->tps->dev; > ^ > > vim +106 drivers/gpio/gpio-tps65086.c > > 100 return -ENOMEM; > 101 > 102 platform_set_drvdata(pdev, gpio); > 103 > 104 gpio->tps = dev_get_drvdata(pdev->dev.parent); > 105 gpio->chip = template_chip; > > 106 gpio->chip.parent = gpio->tps->dev; > 107 > 108 ret = gpiochip_add(&gpio->chip); > 109 if (ret < 0) { > > --- > 0-DAY kernel test infrastructure Open Source Technology Center > https://lists.01.org/pipermail/kbuild-all Intel Corporation > I'm probably going to drop the GPIO support in the next series push, this patch was NAK'd for not using .parent, now we have this. I will wait till the GPIO subsystem is stable and push this separately then. From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754727AbbLDQLt (ORCPT ); Fri, 4 Dec 2015 11:11:49 -0500 Received: from arroyo.ext.ti.com ([192.94.94.40]:35529 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754311AbbLDQLr (ORCPT ); Fri, 4 Dec 2015 11:11:47 -0500 Subject: Re: [PATCH v5 4/4] gpio: tps65086: Add GPO driver for the TPS65086 PMIC To: kbuild test robot References: <201512020445.59TmUa1O%fengguang.wu@intel.com> CC: , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Linus Walleij , Alexandre Courbot , Samuel Ortiz , Lee Jones , Liam Girdwood , Mark Brown , , , From: "Andrew F. Davis" Message-ID: <5661BB31.5020907@ti.com> Date: Fri, 4 Dec 2015 10:11:29 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: <201512020445.59TmUa1O%fengguang.wu@intel.com> Content-Type: text/plain; charset="windows-1252"; 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/01/2015 02:16 PM, kbuild test robot wrote: > Hi Andrew, > > [auto build test ERROR on next-20151127] > [cannot apply to ljones-mfd/for-mfd-next gpio/for-next v4.4-rc3 v4.4-rc2 v4.4-rc1 v4.4-rc3] > > url: https://github.com/0day-ci/linux/commits/Andrew-F-Davis/Documentation-tps65086-Add-DT-bindings-for-the-TPS65086-PMIC/20151202-024903 > config: i386-allmodconfig (attached as .config) > reproduce: > # save the attached .config to linux build tree > make ARCH=i386 > > All errors (new ones prefixed by >>): > > drivers/gpio/gpio-tps65086.c: In function 'tps65086_gpio_probe': >>> drivers/gpio/gpio-tps65086.c:106:12: error: 'struct gpio_chip' has no member named 'parent' > gpio->chip.parent = gpio->tps->dev; > ^ > > vim +106 drivers/gpio/gpio-tps65086.c > > 100 return -ENOMEM; > 101 > 102 platform_set_drvdata(pdev, gpio); > 103 > 104 gpio->tps = dev_get_drvdata(pdev->dev.parent); > 105 gpio->chip = template_chip; > > 106 gpio->chip.parent = gpio->tps->dev; > 107 > 108 ret = gpiochip_add(&gpio->chip); > 109 if (ret < 0) { > > --- > 0-DAY kernel test infrastructure Open Source Technology Center > https://lists.01.org/pipermail/kbuild-all Intel Corporation > I'm probably going to drop the GPIO support in the next series push, this patch was NAK'd for not using .parent, now we have this. I will wait till the GPIO subsystem is stable and push this separately then.