linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Tiezhu Yang <yangtiezhu@loongson.cn>,
	Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>
Cc: kbuild-all@lists.01.org, linux-clk@vger.kernel.org,
	linux-kernel@vger.kernel.org, Xuefeng Li <lixuefeng@loongson.cn>,
	Tiezhu Yang <yangtiezhu@loongson.cn>
Subject: Re: [PATCH 2/2] clk: Remove CONFIG_ARCH_HISI check for subdir hisilicon
Date: Wed, 27 May 2020 15:56:08 +0800	[thread overview]
Message-ID: <202005271551.vIm7Hf9d%lkp@intel.com> (raw)
In-Reply-To: <1590377516-32117-2-git-send-email-yangtiezhu@loongson.cn>

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

Hi Tiezhu,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on clk/clk-next]
[also build test WARNING on v5.7-rc7 next-20200526]
[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/Tiezhu-Yang/clk-hisilicon-Use-correct-return-value-about-hisi_reset_init/20200525-113342
base:   https://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git clk-next
config: x86_64-randconfig-s021-20200527 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-13) 9.3.0
reproduce:
        # apt-get install sparse
        # sparse version: v0.6.1-240-gf0fe1cd9-dirty
        # save the attached .config to linux build tree
        make W=1 C=1 ARCH=x86_64 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__'

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


sparse warnings: (new ones prefixed by >>)

>> drivers/clk/hisilicon/reset.c:100:28: sparse: sparse: incorrect type in return expression (different address spaces) @@     expected struct hisi_reset_controller * @@     got void [noderef] <asn:2> *membase @@
>> drivers/clk/hisilicon/reset.c:100:28: sparse:     expected struct hisi_reset_controller *
>> drivers/clk/hisilicon/reset.c:100:28: sparse:     got void [noderef] <asn:2> *membase

vim +100 drivers/clk/hisilicon/reset.c

25824d52caa8e61 Jiancheng Xue       2016-04-23   89  
97b7129cd2afb47 Jiancheng Xue       2016-06-15   90  struct hisi_reset_controller *hisi_reset_init(struct platform_device *pdev)
25824d52caa8e61 Jiancheng Xue       2016-04-23   91  {
25824d52caa8e61 Jiancheng Xue       2016-04-23   92  	struct hisi_reset_controller *rstc;
25824d52caa8e61 Jiancheng Xue       2016-04-23   93  
97b7129cd2afb47 Jiancheng Xue       2016-06-15   94  	rstc = devm_kmalloc(&pdev->dev, sizeof(*rstc), GFP_KERNEL);
25824d52caa8e61 Jiancheng Xue       2016-04-23   95  	if (!rstc)
78847951203a978 Tiezhu Yang         2020-05-25   96  		return ERR_PTR(-ENOMEM);
25824d52caa8e61 Jiancheng Xue       2016-04-23   97  
75cc0a123c90c8e YueHaibing          2019-10-14   98  	rstc->membase = devm_platform_ioremap_resource(pdev, 0);
e9a2310fb689151 Gustavo A. R. Silva 2018-07-25   99  	if (IS_ERR(rstc->membase))
78847951203a978 Tiezhu Yang         2020-05-25 @100  		return rstc->membase;
25824d52caa8e61 Jiancheng Xue       2016-04-23  101  
25824d52caa8e61 Jiancheng Xue       2016-04-23  102  	spin_lock_init(&rstc->lock);
25824d52caa8e61 Jiancheng Xue       2016-04-23  103  	rstc->rcdev.owner = THIS_MODULE;
25824d52caa8e61 Jiancheng Xue       2016-04-23  104  	rstc->rcdev.ops = &hisi_reset_ops;
97b7129cd2afb47 Jiancheng Xue       2016-06-15  105  	rstc->rcdev.of_node = pdev->dev.of_node;
25824d52caa8e61 Jiancheng Xue       2016-04-23  106  	rstc->rcdev.of_reset_n_cells = 2;
25824d52caa8e61 Jiancheng Xue       2016-04-23  107  	rstc->rcdev.of_xlate = hisi_reset_of_xlate;
25824d52caa8e61 Jiancheng Xue       2016-04-23  108  	reset_controller_register(&rstc->rcdev);
25824d52caa8e61 Jiancheng Xue       2016-04-23  109  
25824d52caa8e61 Jiancheng Xue       2016-04-23  110  	return rstc;
25824d52caa8e61 Jiancheng Xue       2016-04-23  111  }
25824d52caa8e61 Jiancheng Xue       2016-04-23  112  EXPORT_SYMBOL_GPL(hisi_reset_init);
25824d52caa8e61 Jiancheng Xue       2016-04-23  113  

:::::: The code at line 100 was first introduced by commit
:::::: 78847951203a978f4544f9e7dd244a3930b3945b clk: hisilicon: Use correct return value about hisi_reset_init()

:::::: TO: Tiezhu Yang <yangtiezhu@loongson.cn>
:::::: CC: 0day robot <lkp@intel.com>

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

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

  parent reply	other threads:[~2020-05-27  7:57 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-25  3:31 [PATCH 1/2] clk: hisilicon: Use correct return value about hisi_reset_init() Tiezhu Yang
2020-05-25  3:31 ` [PATCH 2/2] clk: Remove CONFIG_ARCH_HISI check for subdir hisilicon Tiezhu Yang
2020-05-26 18:55   ` kbuild test robot
2020-05-27  4:16     ` Tiezhu Yang
2020-05-27  4:13   ` kbuild test robot
2020-05-27  7:56   ` kbuild test robot [this message]
2020-05-26 23:02 ` [PATCH 1/2] clk: hisilicon: Use correct return value about hisi_reset_init() Stephen Boyd
2020-05-27  2:49   ` Tiezhu Yang

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=202005271551.vIm7Hf9d%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lixuefeng@loongson.cn \
    --cc=mturquette@baylibre.com \
    --cc=sboyd@kernel.org \
    --cc=yangtiezhu@loongson.cn \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).