public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Dan Murphy <dmurphy@ti.com>, jacek.anaszewski@gmail.com, pavel@ucw.cz
Cc: kbuild-all@lists.01.org, linux-leds@vger.kernel.org,
	linux-kernel@vger.kernel.org, Dan Murphy <dmurphy@ti.com>
Subject: Re: [PATCH v24 02/16] leds: multicolor: Introduce a multicolor class definition
Date: Tue, 5 May 2020 05:18:28 +0800	[thread overview]
Message-ID: <202005050509.ulcDbkZ2%lkp@intel.com> (raw)
In-Reply-To: <20200503123215.6449-3-dmurphy@ti.com>

Hi Dan,

I love your patch! Yet something to improve:

[auto build test ERROR on pavel-linux-leds/for-next]
[also build test ERROR on robh/for-next linus/master j.anaszewski-leds/for-next v5.7-rc4 next-20200504]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Dan-Murphy/Multicolor-Framework-v24/20200505-031241
base:   git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git for-next
config: parisc-allnoconfig
compiler: hppa-linux-gcc (GCC) 9.3.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=parisc  allnoconfig
        COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=parisc 

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

All errors (new ones prefixed by >>):

>> drivers/leds/Kconfig:33:error: recursive dependency detected!
>> drivers/leds/Kconfig:33: symbol LEDS_CLASS_MULTI_COLOR depends on LEDS_CLASS_MULTI_COLOR
   For a resolution refer to Documentation/kbuild/kconfig-language.rst
   subsection "Kconfig recursive dependency limitations"

vim +33 drivers/leds/Kconfig

    16	
    17	config LEDS_CLASS
    18		tristate "LED Class Support"
    19		help
    20		  This option enables the LED sysfs class in /sys/class/leds.  You'll
    21		  need this to do anything useful with LEDs.  If unsure, say N.
    22	
    23	config LEDS_CLASS_FLASH
    24		tristate "LED Flash Class Support"
    25		depends on LEDS_CLASS
    26		help
    27		  This option enables the flash LED sysfs class in /sys/class/leds.
    28		  It wraps LED Class and adds flash LEDs specific sysfs attributes
    29		  and kernel internal API to it. You'll need this to provide support
    30		  for the flash related features of a LED device. It can be built
    31		  as a module.
    32	
  > 33	config LEDS_CLASS_MULTI_COLOR
    34		tristate "LED MultiColor LED Class Support"
    35		depends on LEDS_CLASS
    36		depends on LEDS_CLASS_MULTI_COLOR || !LEDS_CLASS_MULTI_COLOR
    37		help
    38		  This option enables the multicolor LED sysfs class in /sys/class/leds.
    39		  It wraps LED class and adds multicolor LED specific sysfs attributes
    40		  and kernel internal API to it. You'll need this to provide support
    41		  for multicolor LEDs that are grouped together. This class is not
    42		  intended for single color LEDs. It can be built as a module.
    43	

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

  parent reply	other threads:[~2020-05-04 21:18 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-03 12:31 [PATCH v24 00/16] Multicolor Framework v24 Dan Murphy
2020-05-03 12:32 ` [PATCH v24 01/16] dt: bindings: Add multicolor class dt bindings documention Dan Murphy
2020-05-04 19:22   ` Jacek Anaszewski
2020-05-04 19:55   ` [PATCH v25 " Dan Murphy
2020-05-03 12:32 ` [PATCH v24 02/16] leds: multicolor: Introduce a multicolor class definition Dan Murphy
2020-05-04 20:31   ` Jacek Anaszewski
2020-05-04 20:31     ` Dan Murphy
2020-05-04 21:18   ` kbuild test robot [this message]
2020-05-03 12:32 ` [PATCH v24 03/16] dt: bindings: lp50xx: Introduce the lp50xx family of RGB drivers Dan Murphy
2020-05-03 12:32 ` [PATCH v24 04/16] leds: lp50xx: Add the LP50XX family of the RGB LED driver Dan Murphy
2020-05-03 12:32 ` [PATCH v24 05/16] dt: bindings: lp55xx: Be consistent in the document with LED acronym Dan Murphy
2020-05-03 12:32 ` [PATCH v24 06/16] dt: bindings: lp55xx: Update binding for Multicolor Framework Dan Murphy
2020-05-03 12:32 ` [PATCH v24 07/16] ARM: dts: n900: Add reg property to the LP5523 channel node Dan Murphy
2020-05-03 12:32 ` [PATCH v24 08/16] ARM: dts: imx6dl-yapp4: Add reg property to the lp5562 " Dan Murphy
2020-05-03 12:32 ` [PATCH v24 09/16] ARM: dts: ste-href: Add reg property to the LP5521 channel nodes Dan Murphy
2020-05-03 12:32 ` [PATCH v24 10/16] leds: lp55xx: Convert LED class registration to devm_* Dan Murphy
2020-05-03 12:32 ` [PATCH v24 11/16] leds: lp55xx: Add multicolor framework support to lp55xx Dan Murphy
2020-05-03 12:32 ` [PATCH v24 12/16] leds: lp5523: Update the lp5523 code to add multicolor brightness function Dan Murphy
2020-05-03 12:32 ` [PATCH v24 13/16] leds: lp5521: Add multicolor framework multicolor brightness support Dan Murphy
2020-05-03 12:32 ` [PATCH v24 14/16] leds: lp55xx: Fix checkpatch file permissions issues Dan Murphy
2020-05-03 12:32 ` [PATCH v24 15/16] leds: lp5523: Fix checkpatch issues in the code Dan Murphy
2020-05-03 12:32 ` [PATCH v24 16/16] dt: bindings: Update lp55xx binding to recommended LED naming Dan Murphy

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=202005050509.ulcDbkZ2%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=dmurphy@ti.com \
    --cc=jacek.anaszewski@gmail.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-leds@vger.kernel.org \
    --cc=pavel@ucw.cz \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox