From: kernel test robot <lkp@intel.com>
To: Daniel Golle <daniel@makrotopia.org>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [RFC PATCH v11 11/12] net: ethernet: mtk_eth_soc: switch to external PCS driver
Date: Thu, 2 Mar 2023 07:24:36 +0800 [thread overview]
Message-ID: <202303020700.chUbZT37-lkp@intel.com> (raw)
In-Reply-To: <657bbf01e94fe4fdf5a2342b2a52c61bc121d999.1677699407.git.daniel@makrotopia.org>
Hi Daniel,
[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on 1716a175592aff9549a0c07aac8f9cadd03003f5]
url: https://github.com/intel-lab-lkp/linux/commits/Daniel-Golle/net-ethernet-mtk_eth_soc-add-support-for-MT7981-SoC/20230302-035810
base: 1716a175592aff9549a0c07aac8f9cadd03003f5
patch link: https://lore.kernel.org/r/657bbf01e94fe4fdf5a2342b2a52c61bc121d999.1677699407.git.daniel%40makrotopia.org
patch subject: [RFC PATCH v11 11/12] net: ethernet: mtk_eth_soc: switch to external PCS driver
config: m68k-allyesconfig (https://download.01.org/0day-ci/archive/20230302/202303020700.chUbZT37-lkp@intel.com/config)
compiler: m68k-linux-gcc (GCC) 12.1.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/intel-lab-lkp/linux/commit/ff89e0d2a6208203b967ff9df9e2d2d4c9a48927
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Daniel-Golle/net-ethernet-mtk_eth_soc-add-support-for-MT7981-SoC/20230302-035810
git checkout ff89e0d2a6208203b967ff9df9e2d2d4c9a48927
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=m68k olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=m68k SHELL=/bin/bash drivers/net/ethernet/mediatek/
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/202303020700.chUbZT37-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/net/ethernet/mediatek/mtk_eth_soc.c:4082:6: warning: no previous prototype for 'mtk_sgmii_destroy' [-Wmissing-prototypes]
4082 | void mtk_sgmii_destroy(struct mtk_eth *eth)
| ^~~~~~~~~~~~~~~~~
vim +/mtk_sgmii_destroy +4082 drivers/net/ethernet/mediatek/mtk_eth_soc.c
4081
> 4082 void mtk_sgmii_destroy(struct mtk_eth *eth)
4083 {
4084 int i;
4085
4086 for (i = 0; i < MTK_MAX_DEVS; i++)
4087 mtk_pcs_lynxi_destroy(eth->sgmii_pcs[i]);
4088 }
4089
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
next prev parent reply other threads:[~2023-03-01 23:25 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-01 19:53 [RFC PATCH net-next v11 00/12] net: ethernet: mtk_eth_soc: various enhancements Daniel Golle
2023-03-01 19:53 ` Daniel Golle
2023-03-01 19:53 ` [RFC PATCH v11 01/12] net: ethernet: mtk_eth_soc: add support for MT7981 SoC Daniel Golle
2023-03-01 19:53 ` Daniel Golle
2023-03-01 19:53 ` [RFC PATCH v11 02/12] dt-bindings: net: mediatek,net: add mt7981-eth binding Daniel Golle
2023-03-01 19:53 ` Daniel Golle
2023-03-01 19:54 ` [RFC PATCH v11 03/12] dt-bindings: arm: mediatek: sgmiisys: Convert to DT schema Daniel Golle
2023-03-01 19:54 ` Daniel Golle
2023-03-01 19:54 ` [RFC PATCH v11 04/12] dt-bindings: arm: mediatek: sgmiisys: add MT7981 SoC Daniel Golle
2023-03-01 19:54 ` Daniel Golle
2023-03-01 19:54 ` [RFC PATCH v11 05/12] net: ethernet: mtk_eth_soc: set MDIO bus clock frequency Daniel Golle
2023-03-01 19:54 ` Daniel Golle
2023-03-01 19:54 ` [RFC PATCH v11 06/12] net: ethernet: mtk_eth_soc: reset PCS state Daniel Golle
2023-03-01 19:54 ` Daniel Golle
2023-03-01 19:54 ` [RFC PATCH v11 07/12] net: ethernet: mtk_eth_soc: only write values if needed Daniel Golle
2023-03-01 19:54 ` Daniel Golle
2023-03-01 19:55 ` [RFC PATCH v11 08/12] net: ethernet: mtk_eth_soc: fix RX data corruption issue Daniel Golle
2023-03-01 19:55 ` Daniel Golle
2023-03-01 23:31 ` Vladimir Oltean
2023-03-01 23:31 ` Vladimir Oltean
2023-03-02 0:03 ` Daniel Golle
2023-03-02 0:03 ` Daniel Golle
2023-03-02 10:00 ` Vladimir Oltean
2023-03-02 10:00 ` Vladimir Oltean
2023-03-02 11:56 ` Daniel Golle
2023-03-02 11:56 ` Daniel Golle
2023-03-02 12:35 ` Vladimir Oltean
2023-03-02 12:35 ` Vladimir Oltean
2023-03-01 19:55 ` [RFC PATCH v11 09/12] net: ethernet: mtk_eth_soc: ppe: add support for flow accounting Daniel Golle
2023-03-01 19:55 ` Daniel Golle
2023-03-01 19:55 ` [RFC PATCH v11 10/12] net: pcs: add driver for MediaTek SGMII PCS Daniel Golle
2023-03-01 19:55 ` Daniel Golle
2023-03-01 19:55 ` [RFC PATCH v11 11/12] net: ethernet: mtk_eth_soc: switch to external PCS driver Daniel Golle
2023-03-01 19:55 ` Daniel Golle
2023-03-01 23:24 ` kernel test robot [this message]
2023-03-01 19:55 ` [RFC PATCH v11 12/12] net: dsa: mt7530: use " Daniel Golle
2023-03-01 19:55 ` Daniel Golle
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=202303020700.chUbZT37-lkp@intel.com \
--to=lkp@intel.com \
--cc=daniel@makrotopia.org \
--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.