All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH net-next 3/3] net: phy: mscc: implement RGMII skew delay configuration
Date: Fri, 28 Feb 2020 23:07:31 +0800	[thread overview]
Message-ID: <202002282244.KkedFsWf%lkp@intel.com> (raw)
In-Reply-To: <20200227152859.1687119-4-antoine.tenart@bootlin.com>

[-- Attachment #1: Type: text/plain, Size: 3223 bytes --]

Hi Antoine,

I love your patch! Yet something to improve:

[auto build test ERROR on net-next/master]
[also build test ERROR on robh/for-next net/master linus/master v5.6-rc3 next-20200227]
[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/Antoine-Tenart/net-phy-mscc-add-support-for-RGMII-MAC-mode/20200228-185429
base:   https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git 2b99e54b30ed56201dedd91e6049ed83aa9d2302
config: sh-allmodconfig (attached as .config)
compiler: sh4-linux-gcc (GCC) 7.5.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        GCC_VERSION=7.5.0 make.cross ARCH=sh 

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

All errors (new ones prefixed by >>):

   drivers/net/phy/mscc.c: In function 'vsc8584_config_init':
>> drivers/net/phy/mscc.c:2838:23: error: 'dev' undeclared (first use in this function); did you mean 'cdev'?
     if (of_find_property(dev->of_node, "vsc8584,rgmii-skew-rx", NULL) ||
                          ^~~
                          cdev
   drivers/net/phy/mscc.c:2838:23: note: each undeclared identifier is reported only once for each function it appears in

vim +2838 drivers/net/phy/mscc.c

  2825	
  2826		phy_write(phydev, MSCC_EXT_PAGE_ACCESS, MSCC_PHY_PAGE_STANDARD);
  2827	
  2828		val = phy_read(phydev, MSCC_PHY_EXT_PHY_CNTL_1);
  2829		val &= ~(MEDIA_OP_MODE_MASK | VSC8584_MAC_IF_SELECTION_MASK);
  2830		val |= (MEDIA_OP_MODE_COPPER << MEDIA_OP_MODE_POS) |
  2831		       (VSC8584_MAC_IF_SELECTION_SGMII << VSC8584_MAC_IF_SELECTION_POS);
  2832		ret = phy_write(phydev, MSCC_PHY_EXT_PHY_CNTL_1, val);
  2833	
  2834		ret = genphy_soft_reset(phydev);
  2835		if (ret)
  2836			return ret;
  2837	
> 2838		if (of_find_property(dev->of_node, "vsc8584,rgmii-skew-rx", NULL) ||
  2839		    of_find_property(dev->of_node, "vsc8584,rgmii-skew-tx", NULL)) {
  2840			of_property_read_u32(dev->of_node, "vsc8584,rgmii-skew-rx", &skew_rx);
  2841			of_property_read_u32(dev->of_node, "vsc8584,rgmii-skew-tx", &skew_tx);
  2842	
  2843			phy_modify_paged(phydev, MSCC_PHY_PAGE_EXTENDED_2,
  2844					 MSCC_PHY_RGMII_SETTINGS,
  2845					 (0x7 << RGMII_SKEW_RX_POS) |
  2846					 (0x7 << RGMII_SKEW_TX_POS),
  2847					 (skew_rx << RGMII_SKEW_RX_POS) |
  2848					 (skew_tx << RGMII_SKEW_TX_POS));
  2849		}
  2850	
  2851		for (i = 0; i < vsc8531->nleds; i++) {
  2852			ret = vsc85xx_led_cntl_set(phydev, i, vsc8531->leds_mode[i]);
  2853			if (ret)
  2854				return ret;
  2855		}
  2856	
  2857		return 0;
  2858	
  2859	err:
  2860		mutex_unlock(&phydev->mdio.bus->mdio_lock);
  2861		return ret;
  2862	}
  2863	

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

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 53776 bytes --]

  parent reply	other threads:[~2020-02-28 15:07 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-27 15:28 [PATCH net-next 0/3] net: phy: mscc: add support for RGMII MAC mode Antoine Tenart
2020-02-27 15:28 ` [PATCH net-next 1/3] " Antoine Tenart
2020-02-27 16:09   ` Quentin Schulz
2020-02-27 15:28 ` [PATCH net-next 2/3] dt-bindings: net: phy: mscc: document rgmii skew properties Antoine Tenart
2020-02-27 15:28 ` [PATCH net-next 3/3] net: phy: mscc: implement RGMII skew delay configuration Antoine Tenart
2020-02-27 15:51   ` Andrew Lunn
2020-02-27 16:01     ` Antoine Tenart
2020-02-27 16:21   ` Quentin Schulz
2020-02-27 16:25     ` Andrew Lunn
2020-02-27 18:53       ` Antoine Tenart
2020-02-27 18:55     ` Antoine Tenart
2020-02-28 15:07   ` kbuild test robot [this message]
2020-02-28 16:24   ` kbuild test robot

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=202002282244.KkedFsWf%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    /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.