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] [day] [month] [year] [list]
Date:	Mon, 8 Feb 2016 22:48:23 +0800
From:	kbuild test robot <lkp@...el.com>
To:	Philipp Zabel <p.zabel@...gutronix.de>
Cc:	kbuild-all@...org, linux-kernel@...r.kernel.org,
	Moritz Fischer <moritz.fischer@...us.com>,
	Philipp Zabel <p.zabel@...gutronix.de>
Subject: Re: [PATCH] reset: zynq: Make reset_control_ops const

Hi Philipp,

[auto build test WARNING on v4.5-rc3]
[also build test WARNING on next-20160208]
[if your patch is applied to the wrong git tree, please drop us a note to help improving the system]

url:    https://github.com/0day-ci/linux/commits/Philipp-Zabel/reset-zynq-Make-reset_control_ops-const/20160208-213337
config: arm-multi_v7_defconfig (attached as .config)
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=arm 

All warnings (new ones prefixed by >>):

   drivers/reset/reset-zynq.c: In function 'zynq_reset_probe':
>> drivers/reset/reset-zynq.c:122:18: warning: assignment discards 'const' qualifier from pointer target type
     priv->rcdev.ops = &zynq_reset_ops;
                     ^

vim +/const +122 drivers/reset/reset-zynq.c

fedf42b5 Moritz Fischer  2015-07-30  106  						     "syscon");
fedf42b5 Moritz Fischer  2015-07-30  107  	if (IS_ERR(priv->slcr)) {
fedf42b5 Moritz Fischer  2015-07-30  108  		dev_err(&pdev->dev, "unable to get zynq-slcr regmap");
fedf42b5 Moritz Fischer  2015-07-30  109  		return PTR_ERR(priv->slcr);
fedf42b5 Moritz Fischer  2015-07-30  110  	}
fedf42b5 Moritz Fischer  2015-07-30  111  
fedf42b5 Moritz Fischer  2015-07-30  112  	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
fedf42b5 Moritz Fischer  2015-07-30  113  	if (!res) {
fedf42b5 Moritz Fischer  2015-07-30  114  		dev_err(&pdev->dev, "missing IO resource\n");
fedf42b5 Moritz Fischer  2015-07-30  115  		return -ENODEV;
fedf42b5 Moritz Fischer  2015-07-30  116  	}
fedf42b5 Moritz Fischer  2015-07-30  117  
fedf42b5 Moritz Fischer  2015-07-30  118  	priv->offset = res->start;
fedf42b5 Moritz Fischer  2015-07-30  119  
fedf42b5 Moritz Fischer  2015-07-30  120  	priv->rcdev.owner = THIS_MODULE;
fedf42b5 Moritz Fischer  2015-07-30  121  	priv->rcdev.nr_resets = resource_size(res) / 4 * BITS_PER_LONG;
fedf42b5 Moritz Fischer  2015-07-30 @122  	priv->rcdev.ops = &zynq_reset_ops;
fedf42b5 Moritz Fischer  2015-07-30  123  	priv->rcdev.of_node = pdev->dev.of_node;
fedf42b5 Moritz Fischer  2015-07-30  124  
d1f15aa0 Masahiro Yamada 2015-11-05  125  	return reset_controller_register(&priv->rcdev);
fedf42b5 Moritz Fischer  2015-07-30  126  }
fedf42b5 Moritz Fischer  2015-07-30  127  
fedf42b5 Moritz Fischer  2015-07-30  128  static int zynq_reset_remove(struct platform_device *pdev)
fedf42b5 Moritz Fischer  2015-07-30  129  {
fedf42b5 Moritz Fischer  2015-07-30  130  	struct zynq_reset_data *priv = platform_get_drvdata(pdev);

:::::: The code at line 122 was first introduced by commit
:::::: fedf42b50d51758ce43fe0a652991dc01421f422 reset: reset-zynq: Adding support for Xilinx Zynq reset controller.

:::::: TO: Moritz Fischer <moritz.fischer@...us.com>
:::::: CC: Philipp Zabel <p.zabel@...gutronix.de>

---
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/octet-stream" (36557 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ