From: Keerthy <a0393675@ti.com>
To: kbuild test robot <lkp@intel.com>, Keerthy <j-keerthy@ti.com>
Cc: kbuild-all@01.org, broonie@kernel.org, lee.jones@linaro.org,
tony@atomide.com, linus.walleij@linaro.org, gnurou@gmail.com,
linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org,
devicetree@vger.kernel.org, linux-gpio@vger.kernel.org,
robh+dt@kernel.org
Subject: Re: [PATCH v6 2/4] mfd: lp873x: Add lp873x PMIC support
Date: Mon, 8 Aug 2016 12:19:23 +0530 [thread overview]
Message-ID: <57A82B73.6070005@ti.com> (raw)
In-Reply-To: <201608081419.tHdP36PF%fengguang.wu@intel.com>
On Monday 08 August 2016 11:56 AM, kbuild test robot wrote:
> Hi Keerthy,
>
> [auto build test ERROR on gpio/for-next]
> [also build test ERROR on v4.8-rc1 next-20160805]
> [cannot apply to ljones-mfd/for-mfd-next]
> [if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
>
> url: https://github.com/0day-ci/linux/commits/Keerthy/mfd-lp873x-Add-lp873x-PMIC-support/20160808-135204
> base: https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git for-next
> config: i386-allmodconfig (attached as .config)
> compiler: gcc-6 (Debian 6.1.1-9) 6.1.1 20160705
> reproduce:
> # save the attached .config to linux build tree
> make ARCH=i386
>
> All errors (new ones prefixed by >>):
>
>>> drivers/mfd/lp873x.c:83:2: error: unknown field 'probe_new' specified in initializer
> .probe_new = lp873x_probe,
> ^
>>> drivers/mfd/lp873x.c:83:16: error: initialization from incompatible pointer type [-Werror=incompatible-pointer-types]
> .probe_new = lp873x_probe,
> ^~~~~~~~~~~~
> drivers/mfd/lp873x.c:83:16: note: (near initialization for 'lp873x_driver.id_table')
> cc1: some warnings being treated as errors
>
> vim +/probe_new +83 drivers/mfd/lp873x.c
>
> 77
> 78 static struct i2c_driver lp873x_driver = {
> 79 .driver = {
> 80 .name = "lp873x",
> 81 .of_match_table = of_lp873x_match_table,
> 82 },
> > 83 .probe_new = lp873x_probe,
Depends on: Rebased on top of
http://www.gossamer-threads.com/lists/linux/kernel/2457552
As mentioned clearly.
> 84 };
> 85 module_i2c_driver(lp873x_driver);
> 86
>
> ---
> 0-DAY kernel test infrastructure Open Source Technology Center
> https://lists.01.org/pipermail/kbuild-all Intel Corporation
>
WARNING: multiple messages have this Message-ID (diff)
From: Keerthy <a0393675@ti.com>
To: kbuild test robot <lkp@intel.com>, Keerthy <j-keerthy@ti.com>
Cc: <kbuild-all@01.org>, <broonie@kernel.org>, <lee.jones@linaro.org>,
<tony@atomide.com>, <linus.walleij@linaro.org>,
<gnurou@gmail.com>, <linux-omap@vger.kernel.org>,
<linux-kernel@vger.kernel.org>, <devicetree@vger.kernel.org>,
<linux-gpio@vger.kernel.org>, <robh+dt@kernel.org>
Subject: Re: [PATCH v6 2/4] mfd: lp873x: Add lp873x PMIC support
Date: Mon, 8 Aug 2016 12:19:23 +0530 [thread overview]
Message-ID: <57A82B73.6070005@ti.com> (raw)
In-Reply-To: <201608081419.tHdP36PF%fengguang.wu@intel.com>
On Monday 08 August 2016 11:56 AM, kbuild test robot wrote:
> Hi Keerthy,
>
> [auto build test ERROR on gpio/for-next]
> [also build test ERROR on v4.8-rc1 next-20160805]
> [cannot apply to ljones-mfd/for-mfd-next]
> [if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
>
> url: https://github.com/0day-ci/linux/commits/Keerthy/mfd-lp873x-Add-lp873x-PMIC-support/20160808-135204
> base: https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git for-next
> config: i386-allmodconfig (attached as .config)
> compiler: gcc-6 (Debian 6.1.1-9) 6.1.1 20160705
> reproduce:
> # save the attached .config to linux build tree
> make ARCH=i386
>
> All errors (new ones prefixed by >>):
>
>>> drivers/mfd/lp873x.c:83:2: error: unknown field 'probe_new' specified in initializer
> .probe_new = lp873x_probe,
> ^
>>> drivers/mfd/lp873x.c:83:16: error: initialization from incompatible pointer type [-Werror=incompatible-pointer-types]
> .probe_new = lp873x_probe,
> ^~~~~~~~~~~~
> drivers/mfd/lp873x.c:83:16: note: (near initialization for 'lp873x_driver.id_table')
> cc1: some warnings being treated as errors
>
> vim +/probe_new +83 drivers/mfd/lp873x.c
>
> 77
> 78 static struct i2c_driver lp873x_driver = {
> 79 .driver = {
> 80 .name = "lp873x",
> 81 .of_match_table = of_lp873x_match_table,
> 82 },
> > 83 .probe_new = lp873x_probe,
Depends on: Rebased on top of
http://www.gossamer-threads.com/lists/linux/kernel/2457552
As mentioned clearly.
> 84 };
> 85 module_i2c_driver(lp873x_driver);
> 86
>
> ---
> 0-DAY kernel test infrastructure Open Source Technology Center
> https://lists.01.org/pipermail/kbuild-all Intel Corporation
>
next prev parent reply other threads:[~2016-08-08 6:49 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-08 5:46 [PATCH v6 0/4] mfd: lp873x: Add lp873x PMIC support Keerthy
2016-08-08 5:46 ` Keerthy
2016-08-08 5:46 ` [PATCH v6 1/4] Documentation: mfd: LP873X: Add information for the mfd driver Keerthy
2016-08-08 5:46 ` Keerthy
[not found] ` <1470635218-15951-2-git-send-email-j-keerthy-l0cyMroinI0@public.gmane.org>
2016-08-09 12:50 ` Lee Jones
2016-08-09 12:50 ` Lee Jones
2016-08-10 2:56 ` Keerthy
2016-08-10 2:56 ` Keerthy
2016-08-08 5:46 ` [PATCH v6 2/4] mfd: lp873x: Add lp873x PMIC support Keerthy
2016-08-08 5:46 ` Keerthy
2016-08-08 8:41 ` kbuild test robot
2016-08-08 8:41 ` kbuild test robot
[not found] ` <1470635218-15951-3-git-send-email-j-keerthy-l0cyMroinI0@public.gmane.org>
2016-08-08 6:26 ` kbuild test robot
2016-08-08 6:26 ` kbuild test robot
2016-08-08 6:49 ` Keerthy [this message]
2016-08-08 6:49 ` Keerthy
2016-08-09 12:53 ` Lee Jones
2016-08-09 12:53 ` Lee Jones
2016-08-10 2:57 ` Keerthy
2016-08-10 2:57 ` Keerthy
[not found] ` <57AA9826.4060308-l0cyMroinI0@public.gmane.org>
2016-08-10 8:18 ` Lee Jones
2016-08-10 8:18 ` Lee Jones
2016-08-08 5:46 ` [PATCH v6 3/4] gpio: lp873x: Add support for General Purpose Outputs Keerthy
2016-08-08 5:46 ` Keerthy
[not found] ` <1470635218-15951-4-git-send-email-j-keerthy-l0cyMroinI0@public.gmane.org>
2016-08-11 13:30 ` Linus Walleij
2016-08-11 13:30 ` Linus Walleij
2016-08-08 5:46 ` [PATCH v6 4/4] regulator: lp873x: Change the MFD config option as per latest naming Keerthy
2016-08-08 5:46 ` Keerthy
2016-08-12 10:57 ` Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=57A82B73.6070005@ti.com \
--to=a0393675@ti.com \
--cc=broonie@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=gnurou@gmail.com \
--cc=j-keerthy@ti.com \
--cc=kbuild-all@01.org \
--cc=lee.jones@linaro.org \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=lkp@intel.com \
--cc=robh+dt@kernel.org \
--cc=tony@atomide.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.