From: kernel test robot <lkp@intel.com>
To: Andrew Lunn <andrew@lunn.ch>, robh+dt@kernel.org
Cc: kbuild-all@lists.01.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, Andrew Lunn <andrew@lunn.ch>
Subject: Re: [PATCH] of: of_match_node: Make stub an inline function to avoid W=1 warnings
Date: Fri, 28 Aug 2020 18:52:49 +0800 [thread overview]
Message-ID: <202008281850.kwApZCPV%lkp@intel.com> (raw)
In-Reply-To: <20200828021939.2912798-1-andrew@lunn.ch>
[-- Attachment #1: Type: text/plain, Size: 3670 bytes --]
Hi Andrew,
I love your patch! Yet something to improve:
[auto build test ERROR on robh/for-next]
[also build test ERROR on linux/master linus/master v5.9-rc2 next-20200828]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Andrew-Lunn/of-of_match_node-Make-stub-an-inline-function-to-avoid-W-1-warnings/20200828-102035
base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: i386-randconfig-a006-20200828 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce (this is a W=1 build):
# save the attached .config to linux build tree
make W=1 ARCH=i386
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
drivers/misc/atmel-ssc.c: In function 'atmel_ssc_get_driver_data':
>> drivers/misc/atmel-ssc.c:137:25: error: 'atmel_ssc_dt_ids' undeclared (first use in this function); did you mean 'atmel_ssc_devtypes'?
137 | match = of_match_node(atmel_ssc_dt_ids, pdev->dev.of_node);
| ^~~~~~~~~~~~~~~~
| atmel_ssc_devtypes
drivers/misc/atmel-ssc.c:137:25: note: each undeclared identifier is reported only once for each function it appears in
--
drivers/i2c/busses/i2c-s3c2410.c: In function 's3c24xx_get_device_quirks':
>> drivers/i2c/busses/i2c-s3c2410.c:162:25: error: 's3c24xx_i2c_match' undeclared (first use in this function); did you mean 's3c24xx_i2c_state'?
162 | match = of_match_node(s3c24xx_i2c_match, pdev->dev.of_node);
| ^~~~~~~~~~~~~~~~~
| s3c24xx_i2c_state
drivers/i2c/busses/i2c-s3c2410.c:162:25: note: each undeclared identifier is reported only once for each function it appears in
# https://github.com/0day-ci/linux/commit/3213d0cc82c7a4e0e85e0db3da3da279460c833b
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Andrew-Lunn/of-of_match_node-Make-stub-an-inline-function-to-avoid-W-1-warnings/20200828-102035
git checkout 3213d0cc82c7a4e0e85e0db3da3da279460c833b
vim +137 drivers/misc/atmel-ssc.c
099343c64e1615 Bo Shen 2012-11-07 131
7c97301285b62a Nathan Chancellor 2018-10-17 132 static inline const struct atmel_ssc_platform_data *
099343c64e1615 Bo Shen 2012-11-07 133 atmel_ssc_get_driver_data(struct platform_device *pdev)
099343c64e1615 Bo Shen 2012-11-07 134 {
099343c64e1615 Bo Shen 2012-11-07 135 if (pdev->dev.of_node) {
099343c64e1615 Bo Shen 2012-11-07 136 const struct of_device_id *match;
099343c64e1615 Bo Shen 2012-11-07 @137 match = of_match_node(atmel_ssc_dt_ids, pdev->dev.of_node);
099343c64e1615 Bo Shen 2012-11-07 138 if (match == NULL)
099343c64e1615 Bo Shen 2012-11-07 139 return NULL;
099343c64e1615 Bo Shen 2012-11-07 140 return match->data;
099343c64e1615 Bo Shen 2012-11-07 141 }
099343c64e1615 Bo Shen 2012-11-07 142
099343c64e1615 Bo Shen 2012-11-07 143 return (struct atmel_ssc_platform_data *)
099343c64e1615 Bo Shen 2012-11-07 144 platform_get_device_id(pdev)->driver_data;
099343c64e1615 Bo Shen 2012-11-07 145 }
099343c64e1615 Bo Shen 2012-11-07 146
---
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: 36873 bytes --]
next prev parent reply other threads:[~2020-08-28 11:03 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-28 2:19 [PATCH] of: of_match_node: Make stub an inline function to avoid W=1 warnings Andrew Lunn
2020-08-28 10:52 ` kernel test robot [this message]
2020-08-28 11:05 ` kernel test robot
2020-08-28 13:00 ` Andrew Lunn
2020-08-28 23:09 ` Rob Herring
2020-08-30 15:23 ` Andrew Lunn
2020-08-30 20:15 ` Andy Shevchenko
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=202008281850.kwApZCPV%lkp@intel.com \
--to=lkp@intel.com \
--cc=andrew@lunn.ch \
--cc=devicetree@vger.kernel.org \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robh+dt@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox