[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <201701221912.CoH4auq3%fengguang.wu@intel.com>
Date: Sun, 22 Jan 2017 19:21:54 +0800
From: kbuild test robot <lkp@...el.com>
To: Jingju Hou <houjingj@...vell.com>
Cc: kbuild-all@...org, davem@...emloft.net,
thomas.petazzoni@...e-electrons.com, netdev@...r.kernel.org,
Jingju Hou <houjingj@...vell.com>
Subject: Re: [PATCH] net: mvneta: implement .set_wol and .get_wol
Hi Jingju,
[auto build test ERROR on net-next/master]
[also build test ERROR on v4.10-rc4 next-20170120]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
url: https://github.com/0day-ci/linux/commits/Jingju-Hou/net-mvneta-implement-set_wol-and-get_wol/20170122-181651
config: sparc64-allmodconfig (attached as .config)
compiler: sparc64-linux-gnu-gcc (Debian 6.1.1-9) 6.1.1 20160705
reproduce:
wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
make.cross ARCH=sparc64
All errors (new ones prefixed by >>):
drivers/net/ethernet/marvell/mvneta.c: In function 'mvneta_ethtool_get_wol':
>> drivers/net/ethernet/marvell/mvneta.c:3940:8: error: 'struct mvneta_port' has no member named 'phy_dev'; did you mean 'phy_node'?
if (pp->phy_dev)
^~
drivers/net/ethernet/marvell/mvneta.c:3941:32: error: 'struct mvneta_port' has no member named 'phy_dev'; did you mean 'phy_node'?
return phy_ethtool_get_wol(pp->phy_dev, wol);
^~
drivers/net/ethernet/marvell/mvneta.c:3941:10: warning: 'return' with a value, in function returning void
return phy_ethtool_get_wol(pp->phy_dev, wol);
^~~~~~~~~~~~~~~~~~~
drivers/net/ethernet/marvell/mvneta.c:3933:1: note: declared here
mvneta_ethtool_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
^~~~~~~~~~~~~~~~~~~~~~
drivers/net/ethernet/marvell/mvneta.c: In function 'mvneta_ethtool_set_wol':
drivers/net/ethernet/marvell/mvneta.c:3949:9: error: 'struct mvneta_port' has no member named 'phy_dev'; did you mean 'phy_node'?
if (!pp->phy_dev)
^~
drivers/net/ethernet/marvell/mvneta.c:3952:31: error: 'struct mvneta_port' has no member named 'phy_dev'; did you mean 'phy_node'?
return phy_ethtool_set_wol(pp->phy_dev, wol);
^~
drivers/net/ethernet/marvell/mvneta.c:3953:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
vim +3940 drivers/net/ethernet/marvell/mvneta.c
3934 {
3935 struct mvneta_port *pp = netdev_priv(dev);
3936
3937 wol->supported = 0;
3938 wol->wolopts = 0;
3939
> 3940 if (pp->phy_dev)
3941 return phy_ethtool_get_wol(pp->phy_dev, wol);
3942 }
3943
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
Download attachment ".config.gz" of type "application/gzip" (48616 bytes)
Powered by blists - more mailing lists