All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>,
	Linus Walleij <linus.walleij@linaro.org>,
	Rob Herring <robh+dt@kernel.org>,
	Masami Hiramatsu <mhiramat@kernel.org>
Cc: kbuild-all@lists.01.org, linux-gpio@vger.kernel.org,
	devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org,
	Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Subject: Re: [PATCH 3/3] pinctrl: uniphier: Add UniPhier NX1 pinctrl driver
Date: Tue, 5 Oct 2021 21:06:13 +0800	[thread overview]
Message-ID: <202110052101.CZroR9ku-lkp@intel.com> (raw)
In-Reply-To: <1633399920-1537-4-git-send-email-hayashi.kunihiko@socionext.com>

[-- Attachment #1: Type: text/plain, Size: 3584 bytes --]

Hi Kunihiko,

I love your patch! Yet something to improve:

[auto build test ERROR on linusw-pinctrl/devel]
[also build test ERROR on robh/for-next v5.15-rc3 next-20210922]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/Kunihiko-Hayashi/pinctrl-uniphier-Introduce-some-features-and-NX1-support/20211005-101346
base:   https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git devel
config: powerpc-allyesconfig (attached as .config)
compiler: powerpc64-linux-gcc (GCC) 11.2.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/0day-ci/linux/commit/c68781cbddcc323070eee04896f6f858840a60dc
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Kunihiko-Hayashi/pinctrl-uniphier-Introduce-some-features-and-NX1-support/20211005-101346
        git checkout c68781cbddcc323070eee04896f6f858840a60dc
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross ARCH=powerpc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/pinctrl/uniphier/pinctrl-uniphier-nx1.c:429:27: error: 'usb3_groups' defined but not used [-Werror=unused-const-variable=]
     429 | static const char * const usb3_groups[] = {"usb3"};
         |                           ^~~~~~~~~~~
>> drivers/pinctrl/uniphier/pinctrl-uniphier-nx1.c:428:27: error: 'usb2_groups' defined but not used [-Werror=unused-const-variable=]
     428 | static const char * const usb2_groups[] = {"usb2"};
         |                           ^~~~~~~~~~~
   cc1: all warnings being treated as errors


vim +/usb3_groups +429 drivers/pinctrl/uniphier/pinctrl-uniphier-nx1.c

   407	
   408	static const char * const emmc_groups[] = {"emmc", "emmc_dat8"};
   409	static const char * const ether_rgmii_groups[] = {"ether_rgmii"};
   410	static const char * const ether_rmii_groups[] = {"ether_rmii"};
   411	static const char * const i2c0_groups[] = {"i2c0"};
   412	static const char * const i2c1_groups[] = {"i2c1"};
   413	static const char * const i2c2_groups[] = {"i2c2"};
   414	static const char * const i2c3_groups[] = {"i2c3"};
   415	static const char * const i2c4_groups[] = {"i2c4"};
   416	static const char * const i2c5_groups[] = {"i2c5"};
   417	static const char * const i2c6_groups[] = {"i2c6"};
   418	static const char * const sd_groups[] = {"sd"};
   419	static const char * const spi0_groups[] = {"spi0"};
   420	static const char * const spi1_groups[] = {"spi1"};
   421	static const char * const uart0_groups[] = {"uart0"};
   422	static const char * const uart1_groups[] = {"uart1", "uart1_ctsrts",
   423						    "uart1_modem"};
   424	static const char * const uart2_groups[] = {"uart2", "uart2_ctsrts"};
   425	static const char * const uart3_groups[] = {"uart3"};
   426	static const char * const usb0_groups[] = {"usb0"};
   427	static const char * const usb1_groups[] = {"usb1"};
 > 428	static const char * const usb2_groups[] = {"usb2"};
 > 429	static const char * const usb3_groups[] = {"usb3"};
   430	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 74091 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH 3/3] pinctrl: uniphier: Add UniPhier NX1 pinctrl driver
Date: Tue, 05 Oct 2021 21:06:13 +0800	[thread overview]
Message-ID: <202110052101.CZroR9ku-lkp@intel.com> (raw)
In-Reply-To: <1633399920-1537-4-git-send-email-hayashi.kunihiko@socionext.com>

[-- Attachment #1: Type: text/plain, Size: 3654 bytes --]

Hi Kunihiko,

I love your patch! Yet something to improve:

[auto build test ERROR on linusw-pinctrl/devel]
[also build test ERROR on robh/for-next v5.15-rc3 next-20210922]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/Kunihiko-Hayashi/pinctrl-uniphier-Introduce-some-features-and-NX1-support/20211005-101346
base:   https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git devel
config: powerpc-allyesconfig (attached as .config)
compiler: powerpc64-linux-gcc (GCC) 11.2.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/0day-ci/linux/commit/c68781cbddcc323070eee04896f6f858840a60dc
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Kunihiko-Hayashi/pinctrl-uniphier-Introduce-some-features-and-NX1-support/20211005-101346
        git checkout c68781cbddcc323070eee04896f6f858840a60dc
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross ARCH=powerpc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/pinctrl/uniphier/pinctrl-uniphier-nx1.c:429:27: error: 'usb3_groups' defined but not used [-Werror=unused-const-variable=]
     429 | static const char * const usb3_groups[] = {"usb3"};
         |                           ^~~~~~~~~~~
>> drivers/pinctrl/uniphier/pinctrl-uniphier-nx1.c:428:27: error: 'usb2_groups' defined but not used [-Werror=unused-const-variable=]
     428 | static const char * const usb2_groups[] = {"usb2"};
         |                           ^~~~~~~~~~~
   cc1: all warnings being treated as errors


vim +/usb3_groups +429 drivers/pinctrl/uniphier/pinctrl-uniphier-nx1.c

   407	
   408	static const char * const emmc_groups[] = {"emmc", "emmc_dat8"};
   409	static const char * const ether_rgmii_groups[] = {"ether_rgmii"};
   410	static const char * const ether_rmii_groups[] = {"ether_rmii"};
   411	static const char * const i2c0_groups[] = {"i2c0"};
   412	static const char * const i2c1_groups[] = {"i2c1"};
   413	static const char * const i2c2_groups[] = {"i2c2"};
   414	static const char * const i2c3_groups[] = {"i2c3"};
   415	static const char * const i2c4_groups[] = {"i2c4"};
   416	static const char * const i2c5_groups[] = {"i2c5"};
   417	static const char * const i2c6_groups[] = {"i2c6"};
   418	static const char * const sd_groups[] = {"sd"};
   419	static const char * const spi0_groups[] = {"spi0"};
   420	static const char * const spi1_groups[] = {"spi1"};
   421	static const char * const uart0_groups[] = {"uart0"};
   422	static const char * const uart1_groups[] = {"uart1", "uart1_ctsrts",
   423						    "uart1_modem"};
   424	static const char * const uart2_groups[] = {"uart2", "uart2_ctsrts"};
   425	static const char * const uart3_groups[] = {"uart3"};
   426	static const char * const usb0_groups[] = {"usb0"};
   427	static const char * const usb1_groups[] = {"usb1"};
 > 428	static const char * const usb2_groups[] = {"usb2"};
 > 429	static const char * const usb3_groups[] = {"usb3"};
   430	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 74091 bytes --]

  reply	other threads:[~2021-10-05 13:06 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-05  2:11 [PATCH 0/3] pinctrl: uniphier: Introduce some features and NX1 support Kunihiko Hayashi
2021-10-05  2:11 ` Kunihiko Hayashi
2021-10-05  2:11 ` [PATCH 1/3] pinctrl: uniphier: Add extra audio pinmux settings for LD11, LD20 and PXs3 SoCs Kunihiko Hayashi
2021-10-05  2:11   ` Kunihiko Hayashi
2021-10-05  2:11 ` [PATCH 2/3] dt-bindings: pinctrl: uniphier: Add NX1 pinctrl binding Kunihiko Hayashi
2021-10-05  2:11   ` Kunihiko Hayashi
2021-10-05 12:26   ` Rob Herring
2021-10-05 12:26     ` Rob Herring
2021-10-05  2:12 ` [PATCH 3/3] pinctrl: uniphier: Add UniPhier NX1 pinctrl driver Kunihiko Hayashi
2021-10-05  2:12   ` Kunihiko Hayashi
2021-10-05 13:06   ` kernel test robot [this message]
2021-10-05 13:06     ` kernel test robot
2021-10-05 14:20     ` Kunihiko Hayashi
2021-10-05 14:20       ` Kunihiko Hayashi

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=202110052101.CZroR9ku-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=devicetree@vger.kernel.org \
    --cc=hayashi.kunihiko@socionext.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mhiramat@kernel.org \
    --cc=robh+dt@kernel.org \
    /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.