mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Jai Luthra <jai.luthra@ideasonboard.com>,
	Sakari Ailus <sakari.ailus@linux.intel.com>,
	Dave Stevenson <dave.stevenson@raspberrypi.com>,
	Jacopo Mondi <jacopo@jmondi.org>,
	Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev, linux-media@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	Kieran Bingham <kieran.bingham@ideasonboard.com>,
	David Plowman <david.plowman@raspberrypi.com>,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
	Peter Robinson <pbrobinson@gmail.com>,
	Stefan Wahren <wahrenst@gmx.net>,
	"Ivan T. Ivanov" <iivanov@suse.de>,
	Jai Luthra <jai.luthra@ideasonboard.com>
Subject: Re: [PATCH 04/13] media: i2c: ov5647: Fix v4l2-compliance failure subscribing to events
Date: Wed, 29 Oct 2025 08:57:53 +0800	[thread overview]
Message-ID: <202510290816.8EQhDjD8-lkp@intel.com> (raw)
In-Reply-To: <20251028-b4-rpi-ov5647-v1-4-098413454f5e@ideasonboard.com>

Hi Jai,

kernel test robot noticed the following build warnings:

[auto build test WARNING on 3a8660878839faadb4f1a6dd72c3179c1df56787]

url:    https://github.com/intel-lab-lkp/linux/commits/Jai-Luthra/media-i2c-ov5647-Parse-and-register-properties/20251028-153619
base:   3a8660878839faadb4f1a6dd72c3179c1df56787
patch link:    https://lore.kernel.org/r/20251028-b4-rpi-ov5647-v1-4-098413454f5e%40ideasonboard.com
patch subject: [PATCH 04/13] media: i2c: ov5647: Fix v4l2-compliance failure subscribing to events
config: sparc64-randconfig-r134-20251029 (https://download.01.org/0day-ci/archive/20251029/202510290816.8EQhDjD8-lkp@intel.com/config)
compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project d1c086e82af239b245fe8d7832f2753436634990)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251029/202510290816.8EQhDjD8-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/202510290816.8EQhDjD8-lkp@intel.com/

sparse warnings: (new ones prefixed by >>)
>> drivers/media/i2c/ov5647.c:870:10: sparse: sparse: Initializer entry defined twice
   drivers/media/i2c/ov5647.c:876:10: sparse:   also defined here

vim +870 drivers/media/i2c/ov5647.c

3c2472a3c54895 Ramiro Oliveira 2017-03-22  867  
c9a05cece64c60 Jacopo Mondi    2020-11-19  868  /* Subdev core operations registration */
3c2472a3c54895 Ramiro Oliveira 2017-03-22  869  static const struct v4l2_subdev_core_ops ov5647_subdev_core_ops = {
dc3373081396f5 Jacopo Mondi    2020-11-19 @870  	.subscribe_event	= v4l2_ctrl_subdev_subscribe_event,
dc3373081396f5 Jacopo Mondi    2020-11-19  871  	.unsubscribe_event	= v4l2_event_subdev_unsubscribe,
3c2472a3c54895 Ramiro Oliveira 2017-03-22  872  #ifdef CONFIG_VIDEO_ADV_DEBUG
3c2472a3c54895 Ramiro Oliveira 2017-03-22  873  	.g_register		= ov5647_sensor_get_register,
3c2472a3c54895 Ramiro Oliveira 2017-03-22  874  	.s_register		= ov5647_sensor_set_register,
3c2472a3c54895 Ramiro Oliveira 2017-03-22  875  #endif
d812c6225cf5be David Plowman   2025-10-28  876  	.subscribe_event = v4l2_ctrl_subdev_subscribe_event,
d812c6225cf5be David Plowman   2025-10-28  877  	.unsubscribe_event = v4l2_event_subdev_unsubscribe,
3c2472a3c54895 Ramiro Oliveira 2017-03-22  878  };
3c2472a3c54895 Ramiro Oliveira 2017-03-22  879  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

  reply	other threads:[~2025-10-29  0:59 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-28  7:27 [PATCH 00/13] media: i2c: Miscellaneous features and fixes for OV5647 Jai Luthra
2025-10-28  7:27 ` [PATCH 01/13] media: i2c: ov5647: Parse and register properties Jai Luthra
2025-11-02 10:20   ` Jacopo Mondi
2025-10-28  7:27 ` [PATCH 02/13] media: i2c: ov5647: Correct pixel array offset Jai Luthra
2025-11-02 10:29   ` Jacopo Mondi
2025-11-06 12:09     ` Dave Stevenson
2025-10-28  7:27 ` [PATCH 03/13] media: i2c: ov5647: Correct minimum VBLANK value Jai Luthra
2025-11-02 10:30   ` Jacopo Mondi
2025-10-28  7:27 ` [PATCH 04/13] media: i2c: ov5647: Fix v4l2-compliance failure subscribing to events Jai Luthra
2025-10-29  0:57   ` kernel test robot [this message]
2025-10-30  6:07     ` Jai Luthra
2025-10-28  7:27 ` [PATCH 05/13] media: i2c: ov5647: Sensor should report RAW color space Jai Luthra
2025-11-02 10:21   ` Jacopo Mondi
2025-10-28  7:27 ` [PATCH 06/13] media: i2c: ov5647: Support HFLIP and VFLIP Jai Luthra
2025-11-02 10:50   ` Jacopo Mondi
2025-11-12 11:56     ` Jai Luthra
2025-11-12 14:35       ` Dave Stevenson
2025-11-12 14:51         ` Kieran Bingham
2025-11-12 15:34         ` Jacopo Mondi
2025-10-28  7:27 ` [PATCH 07/13] media: i2c: ov5647: Add support for regulator control Jai Luthra
2025-11-02 10:57   ` Jacopo Mondi
2025-11-02 12:35   ` Stefan Wahren
2025-10-28  7:27 ` [PATCH 08/13] media: i2c: ov5647: Use v4l2_async_register_subdev_sensor for lens binding Jai Luthra
2025-11-02 10:58   ` Jacopo Mondi
2025-10-28  7:27 ` [PATCH 09/13] media: i2c: ov5647: Add control of V4L2_CID_HBLANK Jai Luthra
2025-11-02 11:07   ` Jacopo Mondi
2025-11-18 10:57     ` Jai Luthra
2025-10-28  7:27 ` [PATCH 10/13] media: i2c: ov5647: Tidy up mode registers to make the order common Jai Luthra
2025-11-02 11:13   ` Jacopo Mondi
2025-10-28  7:27 ` [PATCH 11/13] media: i2c: ov5647: Separate out the common registers Jai Luthra
2025-10-28  7:27 ` [PATCH 12/13] media: i2c: ov5647: Use the same PLL config for full, 1080p, and binned modes Jai Luthra
2025-11-02 11:16   ` Jacopo Mondi
2025-10-28  7:27 ` [PATCH 13/13] media: i2c: ov5647: Add V4L2_CID_LINK_FREQUENCY control Jai Luthra
2025-11-02 11:29   ` Jacopo Mondi
2025-11-18 11:28     ` Jai Luthra
2025-11-18 12:47       ` Dave Stevenson
2025-11-18 13:27         ` Jai Luthra

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=202510290816.8EQhDjD8-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=dave.stevenson@raspberrypi.com \
    --cc=david.plowman@raspberrypi.com \
    --cc=iivanov@suse.de \
    --cc=jacopo@jmondi.org \
    --cc=jai.luthra@ideasonboard.com \
    --cc=kieran.bingham@ideasonboard.com \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=pbrobinson@gmail.com \
    --cc=sakari.ailus@linux.intel.com \
    --cc=wahrenst@gmx.net \
    /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

all inboxes | Powered by JetHome®