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]
Date:   Sat, 29 Oct 2016 10:31:34 +0800
From:   kbuild test robot <lkp@...el.com>
To:     Sarangdhar Joshi <spjoshi@...eaurora.org>
Cc:     kbuild-all@...org, Andy Gross <andy.gross@...aro.org>,
        David Brown <david.brown@...aro.org>,
        Sarangdhar Joshi <spjoshi@...eaurora.org>,
        linux-arm-msm@...r.kernel.org, linux-soc@...r.kernel.org,
        linux-kernel@...r.kernel.org,
        Bjorn Andersson <bjorn.andersson@...aro.org>,
        Jordan Crouse <jcrouse@...eaurora.org>,
        Stephen Boyd <sboyd@...eaurora.org>,
        Trilok Soni <tsoni@...eaurora.org>
Subject: Re: [PATCH 2/3] firmware: qcom: scm: Remove core, iface and bus
 clocks dependency

Hi Sarangdhar,

[auto build test WARNING on linus/master]
[also build test WARNING on v4.9-rc2 next-20161028]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
[Suggest to use git(>=2.9.0) format-patch --base=<commit> (or --base=auto for convenience) to record what (public, well-known) commit your patch series was built on]
[Check https://git-scm.com/docs/git-format-patch for more information]

url:    https://github.com/0day-ci/linux/commits/Sarangdhar-Joshi/Remove-clocks-dependency-from-SCM-driver/20161029-081333
config: arm-allmodconfig (attached as .config)
compiler: arm-linux-gnueabi-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=arm 

All warnings (new ones prefixed by >>):

   drivers/firmware/qcom_scm.c: In function 'qcom_scm_probe':
>> drivers/firmware/qcom_scm.c:337:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
     clks = (uint64_t)of_device_get_match_data(&pdev->dev);
            ^

vim +337 drivers/firmware/qcom_scm.c

   321	bool qcom_scm_is_available(void)
   322	{
   323		return !!__scm;
   324	}
   325	EXPORT_SYMBOL(qcom_scm_is_available);
   326	
   327	static int qcom_scm_probe(struct platform_device *pdev)
   328	{
   329		struct qcom_scm *scm;
   330		uint64_t clks;
   331		int ret;
   332	
   333		scm = devm_kzalloc(&pdev->dev, sizeof(*scm), GFP_KERNEL);
   334		if (!scm)
   335			return -ENOMEM;
   336	
 > 337		clks = (uint64_t)of_device_get_match_data(&pdev->dev);
   338		if (clks & SCM_HAS_CORE_CLK) {
   339			scm->core_clk = devm_clk_get(&pdev->dev, "core");
   340			if (IS_ERR(scm->core_clk)) {
   341				if (PTR_ERR(scm->core_clk) == -EPROBE_DEFER)
   342					return PTR_ERR(scm->core_clk);
   343	
   344				scm->core_clk = NULL;
   345			}

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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ