From: kernel test robot <lkp@intel.com>
To: Sylvain Petinot <sylvain.petinot@foss.st.com>,
benjamin.mugnier@foss.st.com, mchehab@kernel.org,
robh@kernel.org, krzysztof.kozlowski+dt@linaro.org,
conor+dt@kernel.org
Cc: oe-kbuild-all@lists.linux.dev, linux-media@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] media: i2c: Add driver for ST VD56G3 camera sensor
Date: Thu, 18 Apr 2024 13:39:36 +0800 [thread overview]
Message-ID: <202404181322.l6Ajlqbf-lkp@intel.com> (raw)
In-Reply-To: <20240417133453.17406-3-sylvain.petinot@foss.st.com>
Hi Sylvain,
kernel test robot noticed the following build warnings:
[auto build test WARNING on media-tree/master]
[also build test WARNING on linus/master v6.9-rc4 next-20240417]
[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#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Sylvain-Petinot/media-dt-bindings-Add-ST-VD56G3-camera-sensor-binding/20240417-213838
base: git://linuxtv.org/media_tree.git master
patch link: https://lore.kernel.org/r/20240417133453.17406-3-sylvain.petinot%40foss.st.com
patch subject: [PATCH 2/2] media: i2c: Add driver for ST VD56G3 camera sensor
config: m68k-randconfig-r071-20240418 (https://download.01.org/0day-ci/archive/20240418/202404181322.l6Ajlqbf-lkp@intel.com/config)
compiler: m68k-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240418/202404181322.l6Ajlqbf-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202404181322.l6Ajlqbf-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/media/i2c/st-vd56g3.c:1164:12: warning: 'vd56g3_runtime_suspend' defined but not used [-Wunused-function]
1164 | static int vd56g3_runtime_suspend(struct device *dev)
| ^~~~~~~~~~~~~~~~~~~~~~
>> drivers/media/i2c/st-vd56g3.c:1142:12: warning: 'vd56g3_runtime_resume' defined but not used [-Wunused-function]
1142 | static int vd56g3_runtime_resume(struct device *dev)
| ^~~~~~~~~~~~~~~~~~~~~
vim +/vd56g3_runtime_suspend +1164 drivers/media/i2c/st-vd56g3.c
1141
> 1142 static int vd56g3_runtime_resume(struct device *dev)
1143 {
1144 struct v4l2_subdev *sd = dev_get_drvdata(dev);
1145 struct vd56g3 *sensor = to_vd56g3(sd);
1146 struct i2c_client *client = sensor->i2c_client;
1147 int ret;
1148
1149 ret = vd56g3_power_on(sensor);
1150 if (ret) {
1151 dev_err(&client->dev, "Failed to power on %d", ret);
1152 return ret;
1153 }
1154
1155 ret = vd56g3_boot(sensor);
1156 if (ret) {
1157 dev_err(&client->dev, "sensor boot failed %d", ret);
1158 return ret;
1159 }
1160
1161 return ret;
1162 }
1163
> 1164 static int vd56g3_runtime_suspend(struct device *dev)
1165 {
1166 struct v4l2_subdev *sd = dev_get_drvdata(dev);
1167 struct vd56g3 *sensor = to_vd56g3(sd);
1168
1169 return vd56g3_power_off(sensor);
1170 }
1171
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2024-04-18 5:40 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-17 13:34 [PATCH 0/2] media: Add driver for ST VD56G3 camera sensor Sylvain Petinot
2024-04-17 13:34 ` [PATCH 1/2] media: dt-bindings: Add ST VD56G3 camera sensor binding Sylvain Petinot
2024-04-18 13:09 ` Rob Herring
2024-05-03 8:25 ` Sylvain Petinot
2024-05-03 16:06 ` Krzysztof Kozlowski
2024-05-27 19:05 ` Krzysztof Kozlowski
2024-04-24 20:46 ` Sakari Ailus
2024-05-03 8:40 ` Sylvain Petinot
2024-04-17 13:34 ` [PATCH 2/2] media: i2c: Add driver for ST VD56G3 camera sensor Sylvain Petinot
2024-04-18 5:39 ` kernel test robot [this message]
2024-04-18 9:17 ` Tommaso Merciai
2024-05-03 7:54 ` Sylvain Petinot
2024-05-06 8:23 ` Tommaso Merciai
2024-04-24 21:12 ` Sakari Ailus
2024-05-03 10:10 ` Sylvain Petinot
2024-05-13 13:37 ` Benjamin Mugnier
2024-05-27 7:31 ` Sakari Ailus
2024-05-27 7:44 ` Benjamin Mugnier
2024-05-27 7:45 ` Sakari Ailus
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=202404181322.l6Ajlqbf-lkp@intel.com \
--to=lkp@intel.com \
--cc=benjamin.mugnier@foss.st.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=robh@kernel.org \
--cc=sylvain.petinot@foss.st.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 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).