public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Bradford Love <brad@nextdimension.cc>,
	linux-media@vger.kernel.org, hverkuil+cisco@kernel.org
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
	Bradford Love <brad@nextdimension.cc>
Subject: Re: [PATCH v2] media: au0828: Fix green screen in analog
Date: Thu, 19 Mar 2026 15:34:58 +0800	[thread overview]
Message-ID: <202603191517.dqbfX1as-lkp@intel.com> (raw)
In-Reply-To: <20260317172820.2959499-1-brad@nextdimension.cc>

Hi Bradford,

kernel test robot noticed the following build warnings:



url:    https://github.com/intel-lab-lkp/linux/commits/UPDATE-20260318-180458/Bradford-Love/si2157-Analog-format-fixes/20260314-162352
base:   the 5th patch of https://lore.kernel.org/r/20260312213532.2907276-6-brad%40nextdimension.cc
patch link:    https://lore.kernel.org/r/20260317172820.2959499-1-brad%40nextdimension.cc
patch subject: [PATCH v2] media: au0828: Fix green screen in analog
config: hexagon-randconfig-001-20260319 (https://download.01.org/0day-ci/archive/20260319/202603191517.dqbfX1as-lkp@intel.com/config)
compiler: clang version 23.0.0git (https://github.com/llvm/llvm-project 4abb927bacf37f18f6359a41639a6d1b3bffffb5)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260319/202603191517.dqbfX1as-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/202603191517.dqbfX1as-lkp@intel.com/

All warnings (new ones prefixed by >>):

>> drivers/media/usb/au0828/au0828-video.c:1676:23: warning: unused variable 'vdev' [-Wunused-variable]
    1676 |         struct video_device *vdev = video_devdata(file);
         |                              ^~~~
   1 warning generated.


vim +/vdev +1676 drivers/media/usb/au0828/au0828-video.c

  1673	
  1674	static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
  1675	{
> 1676		struct video_device *vdev = video_devdata(file);
  1677		struct au0828_dev *dev = video_drvdata(file);
  1678		int rc;
  1679	
  1680		rc = check_dev(dev);
  1681		if (rc < 0)
  1682			return rc;
  1683	
  1684		/* Workaround for a bug in the au0828 hardware design that
  1685		 * sometimes results in the colorspace being inverted
  1686		 */
  1687		if (dev->greenscreen_detected == 1) {
  1688			dprintk(1, "Detected green frame.  Resetting stream...\n");
  1689			au0828_analog_stream_reset(dev);
  1690			dev->greenscreen_detected = 0;
  1691		}
  1692	
  1693		return vb2_ioctl_dqbuf(file, priv, b);
  1694	}
  1695	

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

  parent reply	other threads:[~2026-03-19  7:37 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-12 21:35 [PATCH 00/11] Assorted DVB and TV patches Bradford Love
2026-03-12 21:35 ` [PATCH 01/11] si2157: Analog format fixes Bradford Love
2026-03-12 21:35 ` [PATCH 02/11] cx25840: Fix NTSC-J, PAL-N, and SECAM standards Bradford Love
2026-03-12 21:35 ` [PATCH 03/11] xc5000: Add rf strength function Bradford Love
2026-03-12 21:35 ` [PATCH 04/11] cx231xx: Fix AGC levels for NTSC-M Bradford Love
2026-03-12 21:35 ` [PATCH 05/11] au0828: Fix green screen in analog Bradford Love
2026-03-17  9:25   ` Hans Verkuil
2026-03-17 17:28   ` [PATCH v2] media: " Bradford Love
2026-03-17 21:07     ` [PATCH v3] " Bradford Love
2026-03-19  7:34     ` kernel test robot [this message]
2026-03-12 21:35 ` [PATCH 06/11] si2168: Fix i2c command timeout on embedded platforms Bradford Love
2026-03-12 21:35 ` [PATCH 07/11] si2168: fw 4.0-11 loses warm state during sleep Bradford Love
2026-03-12 21:35 ` [PATCH 08/11] saa7164: Fix REV2 firmware filename Bradford Love
2026-03-12 21:35 ` [PATCH 09/11] au0828: Add new Hauppauge HVR1265 and ImpactVCB-e Bradford Love
2026-03-12 21:35 ` [PATCH 10/11] em28xx: Add a variety of DualHD usb id Bradford Love
2026-03-12 21:35 ` [PATCH 11/11] em28xx: remove tuner type from Hauppauge DVB DualHD Bradford Love
2026-03-17  9:52 ` [PATCH 00/11] Assorted DVB and TV patches Hans Verkuil
2026-03-17 13:13   ` Hans Verkuil
2026-03-17 17:20     ` Bradford Love

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=202603191517.dqbfX1as-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=brad@nextdimension.cc \
    --cc=hverkuil+cisco@kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=llvm@lists.linux.dev \
    --cc=oe-kbuild-all@lists.linux.dev \
    /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