lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <201704071459.Jmod1S8z%fengguang.wu@intel.com>
Date:   Fri, 7 Apr 2017 14:58:49 +0800
From:   kbuild test robot <lkp@...el.com>
To:     Florian Fainelli <f.fainelli@...il.com>
Cc:     kbuild-all@...org, linux-kernel@...r.kernel.org, andrew@...n.ch,
        vivien.didelot@...oirfairelinux.com,
        Florian Fainelli <f.fainelli@...il.com>,
        Rob Herring <robh+dt@...nel.org>,
        Frank Rowand <frowand.list@...il.com>,
        "open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE" 
        <devicetree@...r.kernel.org>
Subject: Re: [PATCH] of: Make of_match_node() an inline stub for CONFIG_OF=n

Hi Florian,

[auto build test ERROR on v4.9-rc8]
[also build test ERROR on next-20170406]
[cannot apply to glikely/devicetree/next]
[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/Florian-Fainelli/of-Make-of_match_node-an-inline-stub-for-CONFIG_OF-n/20170407-111805
config: x86_64-acpi-redef (attached as .config)
compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   drivers/net/ethernet/cadence/macb.c: In function 'macb_probe':
>> drivers/net/ethernet/cadence/macb.c:2967:25: error: 'macb_dt_ids' undeclared (first use in this function)
      match = of_match_node(macb_dt_ids, np);
                            ^~~~~~~~~~~
   drivers/net/ethernet/cadence/macb.c:2967:25: note: each undeclared identifier is reported only once for each function it appears in

vim +/macb_dt_ids +2967 drivers/net/ethernet/cadence/macb.c

421d9df06 Cyrille Pitchen               2015-03-07  2951  	struct phy_device *phydev;
421d9df06 Cyrille Pitchen               2015-03-07  2952  	struct net_device *dev;
421d9df06 Cyrille Pitchen               2015-03-07  2953  	struct resource *regs;
421d9df06 Cyrille Pitchen               2015-03-07  2954  	void __iomem *mem;
421d9df06 Cyrille Pitchen               2015-03-07  2955  	const char *mac;
421d9df06 Cyrille Pitchen               2015-03-07  2956  	struct macb *bp;
421d9df06 Cyrille Pitchen               2015-03-07  2957  	int err;
421d9df06 Cyrille Pitchen               2015-03-07  2958  
f2ce8a9e4 Andy Shevchenko               2015-07-24  2959  	regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
f2ce8a9e4 Andy Shevchenko               2015-07-24  2960  	mem = devm_ioremap_resource(&pdev->dev, regs);
f2ce8a9e4 Andy Shevchenko               2015-07-24  2961  	if (IS_ERR(mem))
f2ce8a9e4 Andy Shevchenko               2015-07-24  2962  		return PTR_ERR(mem);
f2ce8a9e4 Andy Shevchenko               2015-07-24  2963  
c69618b3e Nicolas Ferre                 2015-03-31  2964  	if (np) {
c69618b3e Nicolas Ferre                 2015-03-31  2965  		const struct of_device_id *match;
c69618b3e Nicolas Ferre                 2015-03-31  2966  
c69618b3e Nicolas Ferre                 2015-03-31 @2967  		match = of_match_node(macb_dt_ids, np);
c69618b3e Nicolas Ferre                 2015-03-31  2968  		if (match && match->data) {
c69618b3e Nicolas Ferre                 2015-03-31  2969  			macb_config = match->data;
c69618b3e Nicolas Ferre                 2015-03-31  2970  			clk_init = macb_config->clk_init;
c69618b3e Nicolas Ferre                 2015-03-31  2971  			init = macb_config->init;
c69618b3e Nicolas Ferre                 2015-03-31  2972  		}
c69618b3e Nicolas Ferre                 2015-03-31  2973  	}
c69618b3e Nicolas Ferre                 2015-03-31  2974  
aead88bd0 shubhrajyoti.datta@...inx.com 2016-08-16  2975  	err = clk_init(pdev, &pclk, &hclk, &tx_clk, &rx_clk);

:::::: The code at line 2967 was first introduced by commit
:::::: c69618b3e4f220f4990b91596d40ea3c4cdc938a net/macb: fix probe sequence to setup clocks earlier

:::::: TO: Nicolas Ferre <nicolas.ferre@...el.com>
:::::: CC: David S. Miller <davem@...emloft.net>

---
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" (28725 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ