From: kernel test robot <lkp@intel.com>
To: Li-hao Kuo <lhjeff911@gmail.com>,
rafael@kernel.org, daniel.lezcano@linaro.org, amitk@kernel.org,
rui.zhang@intel.com, robh+dt@kernel.org,
linux-pm@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Cc: kbuild-all@lists.01.org, wells.lu@sunplus.com,
Li-hao Kuo <lhjeff911@gmail.com>
Subject: Re: [PATCH v2 1/2] THERMAL: Add THERMAL driver for Sunplus SP7021
Date: Thu, 30 Dec 2021 00:27:11 +0800 [thread overview]
Message-ID: <202112300008.jdRkNNeV-lkp@intel.com> (raw)
In-Reply-To: <a5b37169978e9b82c33718289066287dfd1b9c00.1640235724.git.lhjeff911@gmail.com>
Hi Li-hao,
I love your patch! Perhaps something to improve:
[auto build test WARNING on rafael-pm/thermal]
[also build test WARNING on linus/master v5.16-rc7 next-20211224]
[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/Li-hao-Kuo/Add-THERMAL-control-driver-for-Sunplus-SP7021-SoC/20211223-130720
base: https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20211230/202112300008.jdRkNNeV-lkp@intel.com/config)
compiler: sh4-linux-gcc (GCC) 11.2.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/99e97d44b9115aad59fc953c2945c7cbda1d57bb
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Li-hao-Kuo/Add-THERMAL-control-driver-for-Sunplus-SP7021-SoC/20211223-130720
git checkout 99e97d44b9115aad59fc953c2945c7cbda1d57bb
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=sh SHELL=/bin/bash drivers/thermal/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> drivers/thermal/sunplus_thermal.c:44:7: warning: no previous prototype for 'sp7021_otp_coef_read' [-Wmissing-prototypes]
44 | char *sp7021_otp_coef_read(struct device *dev, ssize_t *len)
| ^~~~~~~~~~~~~~~~~~~~
vim +/sp7021_otp_coef_read +44 drivers/thermal/sunplus_thermal.c
43
> 44 char *sp7021_otp_coef_read(struct device *dev, ssize_t *len)
45 {
46 char *ret = NULL;
47 struct nvmem_cell *c = nvmem_cell_get(dev, "therm_calib");
48
49 if (IS_ERR_OR_NULL(c)) {
50 dev_err(dev, "OTP read failure:%ld", PTR_ERR(c));
51 return NULL;
52 }
53 ret = nvmem_cell_read(c, len);
54 nvmem_cell_put(c);
55 dev_dbg(dev, "%d bytes read from OTP", *len);
56 return ret;
57 }
58
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v2 1/2] THERMAL: Add THERMAL driver for Sunplus SP7021
Date: Thu, 30 Dec 2021 00:27:11 +0800 [thread overview]
Message-ID: <202112300008.jdRkNNeV-lkp@intel.com> (raw)
In-Reply-To: <a5b37169978e9b82c33718289066287dfd1b9c00.1640235724.git.lhjeff911@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2534 bytes --]
Hi Li-hao,
I love your patch! Perhaps something to improve:
[auto build test WARNING on rafael-pm/thermal]
[also build test WARNING on linus/master v5.16-rc7 next-20211224]
[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/Li-hao-Kuo/Add-THERMAL-control-driver-for-Sunplus-SP7021-SoC/20211223-130720
base: https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20211230/202112300008.jdRkNNeV-lkp(a)intel.com/config)
compiler: sh4-linux-gcc (GCC) 11.2.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/99e97d44b9115aad59fc953c2945c7cbda1d57bb
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Li-hao-Kuo/Add-THERMAL-control-driver-for-Sunplus-SP7021-SoC/20211223-130720
git checkout 99e97d44b9115aad59fc953c2945c7cbda1d57bb
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=sh SHELL=/bin/bash drivers/thermal/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> drivers/thermal/sunplus_thermal.c:44:7: warning: no previous prototype for 'sp7021_otp_coef_read' [-Wmissing-prototypes]
44 | char *sp7021_otp_coef_read(struct device *dev, ssize_t *len)
| ^~~~~~~~~~~~~~~~~~~~
vim +/sp7021_otp_coef_read +44 drivers/thermal/sunplus_thermal.c
43
> 44 char *sp7021_otp_coef_read(struct device *dev, ssize_t *len)
45 {
46 char *ret = NULL;
47 struct nvmem_cell *c = nvmem_cell_get(dev, "therm_calib");
48
49 if (IS_ERR_OR_NULL(c)) {
50 dev_err(dev, "OTP read failure:%ld", PTR_ERR(c));
51 return NULL;
52 }
53 ret = nvmem_cell_read(c, len);
54 nvmem_cell_put(c);
55 dev_dbg(dev, "%d bytes read from OTP", *len);
56 return ret;
57 }
58
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
next prev parent reply other threads:[~2021-12-29 16:28 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-23 5:06 [PATCH v2 0/2] Add THERMAL control driver for Sunplus SP7021 SoC Li-hao Kuo
2021-12-23 5:06 ` [PATCH v2 1/2] THERMAL: Add THERMAL driver for Sunplus SP7021 Li-hao Kuo
2021-12-29 13:04 ` kernel test robot
2021-12-29 13:04 ` kernel test robot
2021-12-29 16:27 ` kernel test robot [this message]
2021-12-29 16:27 ` kernel test robot
2021-12-23 5:06 ` [PATCH v2 2/2] devicetree: bindings THERMAL Add bindings doc " Li-hao Kuo
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=202112300008.jdRkNNeV-lkp@intel.com \
--to=lkp@intel.com \
--cc=amitk@kernel.org \
--cc=daniel.lezcano@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=kbuild-all@lists.01.org \
--cc=lhjeff911@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=rafael@kernel.org \
--cc=robh+dt@kernel.org \
--cc=rui.zhang@intel.com \
--cc=wells.lu@sunplus.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.