All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Christian Marangi <ansuelsmth@gmail.com>
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev
Subject: Re: [net-next PATCH v5 05/15] net: phy: Add a binding for PHY LEDs
Date: Wed, 22 Mar 2023 01:31:58 +0800	[thread overview]
Message-ID: <202303220140.di39rmRa-lkp@intel.com> (raw)
In-Reply-To: <20230319191814.22067-6-ansuelsmth@gmail.com>

Hi Christian,

I love your patch! Yet something to improve:

[auto build test ERROR on net-next/main]

url:    https://github.com/intel-lab-lkp/linux/commits/Christian-Marangi/net-dsa-qca8k-move-qca8k_port_to_phy-to-header/20230320-032239
patch link:    https://lore.kernel.org/r/20230319191814.22067-6-ansuelsmth%40gmail.com
patch subject: [net-next PATCH v5 05/15] net: phy: Add a binding for PHY LEDs
config: i386-randconfig-a015 (https://download.01.org/0day-ci/archive/20230322/202303220140.di39rmRa-lkp@intel.com/config)
compiler: clang version 14.0.6 (https://github.com/llvm/llvm-project f28c006a5895fc0e329fe15fead81e37457cb1d1)
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/intel-lab-lkp/linux/commit/7c3d7e2a0c0c8a14fb18635507f95077bdbc5e46
        git remote add linux-review https://github.com/intel-lab-lkp/linux
        git fetch --no-tags linux-review Christian-Marangi/net-dsa-qca8k-move-qca8k_port_to_phy-to-header/20230320-032239
        git checkout 7c3d7e2a0c0c8a14fb18635507f95077bdbc5e46
        # save the config file
        mkdir build_dir && cp config build_dir/.config
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 olddefconfig
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash

If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202303220140.di39rmRa-lkp@intel.com/

All errors (new ones prefixed by >>):

>> ld.lld: error: undefined symbol: devm_led_classdev_register_ext
   >>> referenced by phy_device.c:3025 (drivers/net/phy/phy_device.c:3025)
   >>>               drivers/net/phy/phy_device.o:(phy_probe) in archive vmlinux.a

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests

  parent reply	other threads:[~2023-03-21 17:32 UTC|newest]

Thread overview: 97+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-19 19:17 [net-next PATCH v5 00/15] net: Add basic LED support for switch/phy Christian Marangi
2023-03-19 19:17 ` Christian Marangi
2023-03-19 19:18 ` [net-next PATCH v5 01/15] net: dsa: qca8k: move qca8k_port_to_phy() to header Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-20 16:32   ` Michal Kubiak
2023-03-20 16:32     ` Michal Kubiak
2023-03-19 19:18 ` [net-next PATCH v5 02/15] net: dsa: qca8k: add LEDs basic support Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-20 16:30   ` Michal Kubiak
2023-03-20 16:30     ` Michal Kubiak
2023-03-20 16:33     ` Christian Marangi
2023-03-20 16:33       ` Christian Marangi
2023-03-20 17:48       ` Michal Kubiak
2023-03-20 17:48         ` Michal Kubiak
2023-03-20 18:05         ` Christian Marangi
2023-03-20 18:05           ` Christian Marangi
2023-03-19 19:18 ` [net-next PATCH v5 03/15] net: dsa: qca8k: add LEDs blink_set() support Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-23 11:55   ` Pavel Machek
2023-03-23 11:55     ` Pavel Machek
2023-03-19 19:18 ` [net-next PATCH v5 04/15] leds: Provide stubs for when CLASS_LED is disabled Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-19 22:49   ` Andrew Lunn
2023-03-19 22:49     ` Andrew Lunn
2023-03-20 17:52     ` Christian Marangi
2023-03-20 17:52       ` Christian Marangi
2023-03-20 19:31       ` Andrew Lunn
2023-03-20 19:31         ` Andrew Lunn
2023-03-21  7:55         ` Christian Marangi
2023-03-21  7:55           ` Christian Marangi
2023-03-21 15:58           ` Andrew Lunn
2023-03-21 15:58             ` Andrew Lunn
2023-03-21 16:02           ` Andrew Lunn
2023-03-21 16:02             ` Andrew Lunn
2023-03-21 16:13             ` Christian Marangi
2023-03-21 16:13               ` Christian Marangi
2023-03-19 19:18 ` [net-next PATCH v5 05/15] net: phy: Add a binding for PHY LEDs Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-20 16:34   ` Michal Kubiak
2023-03-20 16:34     ` Michal Kubiak
2023-03-21 17:31   ` kernel test robot [this message]
2023-03-19 19:18 ` [net-next PATCH v5 06/15] net: phy: phy_device: Call into the PHY driver to set LED brightness Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-20 16:36   ` Michal Kubiak
2023-03-20 16:36     ` Michal Kubiak
2023-03-19 19:18 ` [net-next PATCH v5 07/15] net: phy: marvell: Add software control of the LEDs Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-23 11:55   ` Pavel Machek
2023-03-23 11:55     ` Pavel Machek
2023-03-19 19:18 ` [net-next PATCH v5 08/15] net: phy: phy_device: Call into the PHY driver to set LED blinking Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-23 11:56   ` Pavel Machek
2023-03-23 11:56     ` Pavel Machek
2023-03-19 19:18 ` [net-next PATCH v5 09/15] net: phy: marvell: Implement led_blink_set() Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-23 11:57   ` Pavel Machek
2023-03-23 11:57     ` Pavel Machek
2023-03-19 19:18 ` [net-next PATCH v5 10/15] dt-bindings: net: ethernet-controller: Document support for LEDs node Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-21 21:19   ` Rob Herring
2023-03-21 21:19     ` Rob Herring
2023-03-21 22:54     ` Christian Marangi
2023-03-21 22:54       ` Christian Marangi
2023-03-21 23:23       ` Andrew Lunn
2023-03-21 23:23         ` Andrew Lunn
2023-03-21 23:39         ` Christian Marangi
2023-03-21 23:39           ` Christian Marangi
2023-03-24 21:59           ` Rob Herring
2023-03-24 21:59             ` Rob Herring
2023-03-24 22:06       ` Rob Herring
2023-03-24 22:06         ` Rob Herring
2023-03-19 19:18 ` [net-next PATCH v5 11/15] dt-bindings: net: dsa: qca8k: add LEDs definition example Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-21 21:27   ` Rob Herring
2023-03-21 21:27     ` Rob Herring
2023-03-19 19:18 ` [net-next PATCH v5 12/15] arm: qcom: dt: Drop unevaluated properties in switch nodes for rb3011 Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-24  8:54   ` Krzysztof Kozlowski
2023-03-24  8:54     ` Krzysztof Kozlowski
2023-03-19 19:18 ` [net-next PATCH v5 13/15] arm: qcom: dt: Add Switch LED for each port " Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-23 12:00   ` Pavel Machek
2023-03-23 12:00     ` Pavel Machek
2023-03-19 19:18 ` [net-next PATCH v5 14/15] dt-bindings: net: phy: Document support for LEDs node Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-21 21:29   ` Rob Herring
2023-03-21 21:29     ` Rob Herring
2023-03-19 19:18 ` [net-next PATCH v5 15/15] arm: mvebu: dt: Add PHY LED support for 370-rd WAN port Christian Marangi
2023-03-19 19:18   ` Christian Marangi
2023-03-23 12:04   ` Pavel Machek
2023-03-23 12:04     ` Pavel Machek
2023-03-23 17:02     ` Andrew Lunn
2023-03-23 17:02       ` Andrew Lunn
2023-03-23 19:11       ` Pavel Machek
2023-03-23 19:11         ` Pavel Machek
2023-03-23 19:53         ` Andrew Lunn
2023-03-23 19:53           ` Andrew Lunn

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=202303220140.di39rmRa-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=ansuelsmth@gmail.com \
    --cc=llvm@lists.linux.dev \
    --cc=oe-kbuild-all@lists.linux.dev \
    /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.