Hi Heiner, kernel test robot noticed the following build errors: [auto build test ERROR on net-next/main] url: https://github.com/intel-lab-lkp/linux/commits/Heiner-Kallweit/net-phy-move-PHY-package-code-from-phy_device-c-to-own-source-file/20250301-055302 base: net-next/main patch link: https://lore.kernel.org/r/6ad490fa-61ad-48b8-9660-bb525f756f41%40gmail.com patch subject: [PATCH net-next v2 8/8] net: phy: remove remaining PHY package related definitions from phy.h config: arc-randconfig-001-20250302 (https://download.01.org/0day-ci/archive/20250302/202503020420.v2TkGxj1-lkp@xxxxxxxxx/config) compiler: arceb-elf-gcc (GCC) 13.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250302/202503020420.v2TkGxj1-lkp@xxxxxxxxx/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@xxxxxxxxx> | Closes: https://lore.kernel.org/oe-kbuild-all/202503020420.v2TkGxj1-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): drivers/net/phy/bcm54140.c: In function 'bcm54140_base_read_rdb': drivers/net/phy/bcm54140.c:436:15: error: implicit declaration of function '__phy_package_write'; did you mean '__phy_package_write_mmd'? [-Werror=implicit-function-declaration] 436 | ret = __phy_package_write(phydev, BCM54140_BASE_ADDR, | ^~~~~~~~~~~~~~~~~~~ | __phy_package_write_mmd drivers/net/phy/bcm54140.c:441:15: error: implicit declaration of function '__phy_package_read'; did you mean '__phy_package_read_mmd'? [-Werror=implicit-function-declaration] 441 | ret = __phy_package_read(phydev, BCM54140_BASE_ADDR, | ^~~~~~~~~~~~~~~~~~ | __phy_package_read_mmd drivers/net/phy/bcm54140.c: In function 'bcm54140_probe': >> drivers/net/phy/bcm54140.c:594:9: error: implicit declaration of function 'devm_phy_package_join' [-Werror=implicit-function-declaration] 594 | devm_phy_package_join(&phydev->mdio.dev, phydev, priv->base_addr, 0); | ^~~~~~~~~~~~~~~~~~~~~ cc1: some warnings being treated as errors vim +/devm_phy_package_join +594 drivers/net/phy/bcm54140.c 6937602ed3f9eb Michael Walle 2020-04-20 578 6937602ed3f9eb Michael Walle 2020-04-20 579 static int bcm54140_probe(struct phy_device *phydev) 6937602ed3f9eb Michael Walle 2020-04-20 580 { 6937602ed3f9eb Michael Walle 2020-04-20 581 struct bcm54140_priv *priv; 6937602ed3f9eb Michael Walle 2020-04-20 582 int ret; 6937602ed3f9eb Michael Walle 2020-04-20 583 6937602ed3f9eb Michael Walle 2020-04-20 584 priv = devm_kzalloc(&phydev->mdio.dev, sizeof(*priv), GFP_KERNEL); 6937602ed3f9eb Michael Walle 2020-04-20 585 if (!priv) 6937602ed3f9eb Michael Walle 2020-04-20 586 return -ENOMEM; 6937602ed3f9eb Michael Walle 2020-04-20 587 6937602ed3f9eb Michael Walle 2020-04-20 588 phydev->priv = priv; 6937602ed3f9eb Michael Walle 2020-04-20 589 6937602ed3f9eb Michael Walle 2020-04-20 590 ret = bcm54140_get_base_addr_and_port(phydev); 6937602ed3f9eb Michael Walle 2020-04-20 591 if (ret) 6937602ed3f9eb Michael Walle 2020-04-20 592 return ret; 6937602ed3f9eb Michael Walle 2020-04-20 593 dc9989f173289f Michael Walle 2020-05-06 @594 devm_phy_package_join(&phydev->mdio.dev, phydev, priv->base_addr, 0); dc9989f173289f Michael Walle 2020-05-06 595 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki