All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Shengjiu Wang <shengjiu.wang@nxp.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v12 13/15] media: vivid: add fixed point test controls
Date: Sat, 20 Jan 2024 12:30:30 +0800	[thread overview]
Message-ID: <202401201250.olzKB6qB-lkp@intel.com> (raw)
In-Reply-To: <1705581128-4604-14-git-send-email-shengjiu.wang@nxp.com>

Hi Shengjiu,

kernel test robot noticed the following build errors:

[auto build test ERROR on media-tree/master]
[also build test ERROR on broonie-sound/for-next tiwai-sound/for-next tiwai-sound/for-linus linus/master v6.7 next-20240119]
[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/Shengjiu-Wang/ASoC-fsl_asrc-define-functions-for-memory-to-memory-usage/20240118-211929
base:   git://linuxtv.org/media_tree.git master
patch link:    https://lore.kernel.org/r/1705581128-4604-14-git-send-email-shengjiu.wang%40nxp.com
patch subject: [PATCH v12 13/15] media: vivid: add fixed point test controls
config: loongarch-allyesconfig (https://download.01.org/0day-ci/archive/20240120/202401201250.olzKB6qB-lkp@intel.com/config)
compiler: loongarch64-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240120/202401201250.olzKB6qB-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/202401201250.olzKB6qB-lkp@intel.com/

All errors (new ones prefixed by >>):

>> drivers/media/test-drivers/vivid/vivid-ctrls.c:195:10: error: 'const struct v4l2_ctrl_config' has no member named 'fraction_bits'
     195 |         .fraction_bits = 16,
         |          ^~~~~~~~~~~~~
   drivers/media/test-drivers/vivid/vivid-ctrls.c:206:10: error: 'const struct v4l2_ctrl_config' has no member named 'fraction_bits'
     206 |         .fraction_bits = 63,
         |          ^~~~~~~~~~~~~


vim +195 drivers/media/test-drivers/vivid/vivid-ctrls.c

   186	
   187	static const struct v4l2_ctrl_config vivid_ctrl_int32_q16 = {
   188		.ops = &vivid_user_gen_ctrl_ops,
   189		.id = VIVID_CID_INT_Q4_16,
   190		.name = "Integer 32 Bits Q4.16",
   191		.type = V4L2_CTRL_TYPE_INTEGER,
   192		.min = v4l2_ctrl_fp_compose(-16, 0, 16),
   193		.max = v4l2_ctrl_fp_compose(15, 0xffff, 16),
   194		.step = 1,
 > 195		.fraction_bits = 16,
   196	};
   197	

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

  reply	other threads:[~2024-01-20  4:31 UTC|newest]

Thread overview: 51+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-18 12:31 [PATCH v12 00/15] Add audio support in v4l2 framework Shengjiu Wang
2024-01-18 12:31 ` [PATCH v12 01/15] ASoC: fsl_asrc: define functions for memory to memory usage Shengjiu Wang
2024-01-18 12:31 ` [PATCH v12 02/15] ASoC: fsl_easrc: " Shengjiu Wang
2024-01-18 12:31 ` [PATCH v12 03/15] ASoC: fsl_asrc: move fsl_asrc_common.h to include/sound Shengjiu Wang
2024-01-18 12:31 ` [PATCH v12 04/15] ASoC: fsl_asrc: register m2m platform device Shengjiu Wang
2024-01-18 12:31 ` [PATCH v12 05/15] ASoC: fsl_easrc: " Shengjiu Wang
2024-01-18 12:31 ` [PATCH v12 06/15] media: uapi: Add V4L2_CAP_AUDIO_M2M capability flag Shengjiu Wang
2024-01-18 12:32 ` [PATCH v12 07/15] media: v4l2: Add audio capture and output support Shengjiu Wang
2024-02-17  9:42   ` Mauro Carvalho Chehab
2024-02-17  9:42     ` Mauro Carvalho Chehab
2024-02-19  6:35     ` Shengjiu Wang
2024-02-19  6:35       ` Shengjiu Wang
2024-02-21  4:30     ` Tomasz Figa
2024-02-21  4:30       ` Tomasz Figa
2024-02-21 10:11       ` Shengjiu Wang
2024-02-21 10:11         ` Shengjiu Wang
2024-02-21 11:16         ` Hans Verkuil
2024-02-21 11:16           ` Hans Verkuil
2024-02-21 11:13     ` Hans Verkuil
2024-02-21 11:13       ` Hans Verkuil
2024-02-21  4:32   ` Tomasz Figa
2024-02-21  4:32     ` Tomasz Figa
2024-01-18 12:32 ` [PATCH v12 08/15] media: uapi: Define audio sample format fourcc type Shengjiu Wang
2024-02-17  9:19   ` Mauro Carvalho Chehab
2024-02-17  9:19     ` Mauro Carvalho Chehab
2024-02-19  4:05     ` Shengjiu Wang
2024-02-19  4:05       ` Shengjiu Wang
2024-02-19 12:56       ` Mauro Carvalho Chehab
2024-02-19 12:56         ` Mauro Carvalho Chehab
2024-02-21 11:10         ` Hans Verkuil
2024-02-21 11:10           ` Hans Verkuil
2024-02-22  3:50           ` Shengjiu Wang
2024-02-22  3:50             ` Shengjiu Wang
2024-02-23 14:50             ` Hans Verkuil
2024-02-23 14:50               ` Hans Verkuil
2024-01-18 12:32 ` [PATCH v12 09/15] media: uapi: Add V4L2_CTRL_CLASS_M2M_AUDIO Shengjiu Wang
2024-01-18 12:32 ` [PATCH v12 10/15] media: uapi: Add audio rate controls support Shengjiu Wang
2024-02-17  9:57   ` Mauro Carvalho Chehab
2024-02-17  9:57     ` Mauro Carvalho Chehab
2024-02-19  6:03     ` Shengjiu Wang
2024-02-19  6:03       ` Shengjiu Wang
2024-02-19 12:16       ` Mauro Carvalho Chehab
2024-02-19 12:16         ` Mauro Carvalho Chehab
2024-01-18 12:32 ` [PATCH v12 11/15] media: uapi: Declare interface types for Audio Shengjiu Wang
2024-01-18 12:32 ` [PATCH v12 12/15] media: uapi: Add an entity type for audio resampler Shengjiu Wang
2024-01-18 12:32 ` [PATCH v12 13/15] media: vivid: add fixed point test controls Shengjiu Wang
2024-01-20  4:30   ` kernel test robot [this message]
2024-01-20 13:47   ` kernel test robot
2024-01-18 12:32 ` [PATCH v12 14/15] media: imx-asrc: Add memory to memory driver Shengjiu Wang
2024-01-20 18:17   ` kernel test robot
2024-01-18 12:32 ` [PATCH v12 15/15] media: vim2m-audio: add virtual driver for audio memory to memory Shengjiu Wang

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=202401201250.olzKB6qB-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=shengjiu.wang@nxp.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.