All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Andrzej Pietrasiewicz <andrzej.p@collabora.com>,
	linux-media@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, linux-rockchip@lists.infradead.org,
	linux-staging@lists.linux.dev
Cc: kbuild-all@lists.01.org,
	Andrzej Pietrasiewicz <andrzej.p@collabora.com>,
	Benjamin Gaignard <benjamin.gaignard@collabora.com>,
	Boris Brezillon <bbrezillon@kernel.org>,
	Ezequiel Garcia <elezegarcia@gmail.com>,
	Fabio Estevam <festevam@gmail.com>
Subject: Re: [PATCH v3 04/10] hantro: Add quirk for NV12/NV12_4L4 capture format
Date: Fri, 6 Aug 2021 03:29:25 +0800	[thread overview]
Message-ID: <202108060354.a1d3wFC7-lkp@intel.com> (raw)
In-Reply-To: <20210805144246.11998-5-andrzej.p@collabora.com>

[-- Attachment #1: Type: text/plain, Size: 2252 bytes --]

Hi Andrzej,

I love your patch! Yet something to improve:

[auto build test ERROR on bfee75f73c37a2f46a6326eaa06f5db701f76f01]

url:    https://github.com/0day-ci/linux/commits/Andrzej-Pietrasiewicz/VP9-codec-V4L2-control-interface/20210805-224717
base:   bfee75f73c37a2f46a6326eaa06f5db701f76f01
config: m68k-allmodconfig (attached as .config)
compiler: m68k-linux-gcc (GCC) 10.3.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/16e1c749ce0c829d7984d7c3b43d4f01cc27232d
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Andrzej-Pietrasiewicz/VP9-codec-V4L2-control-interface/20210805-224717
        git checkout 16e1c749ce0c829d7984d7c3b43d4f01cc27232d
        # save the attached .config to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.3.0 make.cross O=build_dir ARCH=m68k SHELL=/bin/bash drivers/staging/

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/staging/media/hantro/imx8m_vpu_hw.c:137:13: error: 'V4L2_PIX_FMT_NV12_4L4' undeclared here (not in a function); did you mean 'V4L2_PIX_FMT_NV12M'?
     137 |   .fourcc = V4L2_PIX_FMT_NV12_4L4,
         |             ^~~~~~~~~~~~~~~~~~~~~
         |             V4L2_PIX_FMT_NV12M


vim +137 drivers/staging/media/hantro/imx8m_vpu_hw.c

   134	
   135	static const struct hantro_fmt imx8m_vpu_g2_dec_fmts[] = {
   136		{
 > 137			.fourcc = V4L2_PIX_FMT_NV12_4L4,
   138			.codec_mode = HANTRO_MODE_NONE,
   139		},
   140		{
   141			.fourcc = V4L2_PIX_FMT_HEVC_SLICE,
   142			.codec_mode = HANTRO_MODE_HEVC_DEC,
   143			.max_depth = 2,
   144			.frmsize = {
   145				.min_width = 48,
   146				.max_width = 3840,
   147				.step_width = MB_DIM,
   148				.min_height = 48,
   149				.max_height = 2160,
   150				.step_height = MB_DIM,
   151			},
   152		},
   153	};
   154	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 60698 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Andrzej Pietrasiewicz <andrzej.p@collabora.com>,
	linux-media@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, linux-rockchip@lists.infradead.org,
	linux-staging@lists.linux.dev
Cc: kbuild-all@lists.01.org,
	Andrzej Pietrasiewicz <andrzej.p@collabora.com>,
	Benjamin Gaignard <benjamin.gaignard@collabora.com>,
	Boris Brezillon <bbrezillon@kernel.org>,
	Ezequiel Garcia <elezegarcia@gmail.com>,
	Fabio Estevam <festevam@gmail.com>
Subject: Re: [PATCH v3 04/10] hantro: Add quirk for NV12/NV12_4L4 capture format
Date: Fri, 6 Aug 2021 03:29:25 +0800	[thread overview]
Message-ID: <202108060354.a1d3wFC7-lkp@intel.com> (raw)
In-Reply-To: <20210805144246.11998-5-andrzej.p@collabora.com>

[-- Attachment #1: Type: text/plain, Size: 2252 bytes --]

Hi Andrzej,

I love your patch! Yet something to improve:

[auto build test ERROR on bfee75f73c37a2f46a6326eaa06f5db701f76f01]

url:    https://github.com/0day-ci/linux/commits/Andrzej-Pietrasiewicz/VP9-codec-V4L2-control-interface/20210805-224717
base:   bfee75f73c37a2f46a6326eaa06f5db701f76f01
config: m68k-allmodconfig (attached as .config)
compiler: m68k-linux-gcc (GCC) 10.3.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/16e1c749ce0c829d7984d7c3b43d4f01cc27232d
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Andrzej-Pietrasiewicz/VP9-codec-V4L2-control-interface/20210805-224717
        git checkout 16e1c749ce0c829d7984d7c3b43d4f01cc27232d
        # save the attached .config to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.3.0 make.cross O=build_dir ARCH=m68k SHELL=/bin/bash drivers/staging/

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/staging/media/hantro/imx8m_vpu_hw.c:137:13: error: 'V4L2_PIX_FMT_NV12_4L4' undeclared here (not in a function); did you mean 'V4L2_PIX_FMT_NV12M'?
     137 |   .fourcc = V4L2_PIX_FMT_NV12_4L4,
         |             ^~~~~~~~~~~~~~~~~~~~~
         |             V4L2_PIX_FMT_NV12M


vim +137 drivers/staging/media/hantro/imx8m_vpu_hw.c

   134	
   135	static const struct hantro_fmt imx8m_vpu_g2_dec_fmts[] = {
   136		{
 > 137			.fourcc = V4L2_PIX_FMT_NV12_4L4,
   138			.codec_mode = HANTRO_MODE_NONE,
   139		},
   140		{
   141			.fourcc = V4L2_PIX_FMT_HEVC_SLICE,
   142			.codec_mode = HANTRO_MODE_HEVC_DEC,
   143			.max_depth = 2,
   144			.frmsize = {
   145				.min_width = 48,
   146				.max_width = 3840,
   147				.step_width = MB_DIM,
   148				.min_height = 48,
   149				.max_height = 2160,
   150				.step_height = MB_DIM,
   151			},
   152		},
   153	};
   154	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 60698 bytes --]

[-- Attachment #3: Type: text/plain, Size: 170 bytes --]

_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Andrzej Pietrasiewicz <andrzej.p@collabora.com>,
	linux-media@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, linux-rockchip@lists.infradead.org,
	linux-staging@lists.linux.dev
Cc: kbuild-all@lists.01.org,
	Andrzej Pietrasiewicz <andrzej.p@collabora.com>,
	Benjamin Gaignard <benjamin.gaignard@collabora.com>,
	Boris Brezillon <bbrezillon@kernel.org>,
	Ezequiel Garcia <elezegarcia@gmail.com>,
	Fabio Estevam <festevam@gmail.com>
Subject: Re: [PATCH v3 04/10] hantro: Add quirk for NV12/NV12_4L4 capture format
Date: Fri, 6 Aug 2021 03:29:25 +0800	[thread overview]
Message-ID: <202108060354.a1d3wFC7-lkp@intel.com> (raw)
In-Reply-To: <20210805144246.11998-5-andrzej.p@collabora.com>

[-- Attachment #1: Type: text/plain, Size: 2252 bytes --]

Hi Andrzej,

I love your patch! Yet something to improve:

[auto build test ERROR on bfee75f73c37a2f46a6326eaa06f5db701f76f01]

url:    https://github.com/0day-ci/linux/commits/Andrzej-Pietrasiewicz/VP9-codec-V4L2-control-interface/20210805-224717
base:   bfee75f73c37a2f46a6326eaa06f5db701f76f01
config: m68k-allmodconfig (attached as .config)
compiler: m68k-linux-gcc (GCC) 10.3.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/16e1c749ce0c829d7984d7c3b43d4f01cc27232d
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Andrzej-Pietrasiewicz/VP9-codec-V4L2-control-interface/20210805-224717
        git checkout 16e1c749ce0c829d7984d7c3b43d4f01cc27232d
        # save the attached .config to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.3.0 make.cross O=build_dir ARCH=m68k SHELL=/bin/bash drivers/staging/

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/staging/media/hantro/imx8m_vpu_hw.c:137:13: error: 'V4L2_PIX_FMT_NV12_4L4' undeclared here (not in a function); did you mean 'V4L2_PIX_FMT_NV12M'?
     137 |   .fourcc = V4L2_PIX_FMT_NV12_4L4,
         |             ^~~~~~~~~~~~~~~~~~~~~
         |             V4L2_PIX_FMT_NV12M


vim +137 drivers/staging/media/hantro/imx8m_vpu_hw.c

   134	
   135	static const struct hantro_fmt imx8m_vpu_g2_dec_fmts[] = {
   136		{
 > 137			.fourcc = V4L2_PIX_FMT_NV12_4L4,
   138			.codec_mode = HANTRO_MODE_NONE,
   139		},
   140		{
   141			.fourcc = V4L2_PIX_FMT_HEVC_SLICE,
   142			.codec_mode = HANTRO_MODE_HEVC_DEC,
   143			.max_depth = 2,
   144			.frmsize = {
   145				.min_width = 48,
   146				.max_width = 3840,
   147				.step_width = MB_DIM,
   148				.min_height = 48,
   149				.max_height = 2160,
   150				.step_height = MB_DIM,
   151			},
   152		},
   153	};
   154	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 60698 bytes --]

[-- Attachment #3: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v3 04/10] hantro: Add quirk for NV12/NV12_4L4 capture format
Date: Fri, 06 Aug 2021 03:29:25 +0800	[thread overview]
Message-ID: <202108060354.a1d3wFC7-lkp@intel.com> (raw)
In-Reply-To: <20210805144246.11998-5-andrzej.p@collabora.com>

[-- Attachment #1: Type: text/plain, Size: 2313 bytes --]

Hi Andrzej,

I love your patch! Yet something to improve:

[auto build test ERROR on bfee75f73c37a2f46a6326eaa06f5db701f76f01]

url:    https://github.com/0day-ci/linux/commits/Andrzej-Pietrasiewicz/VP9-codec-V4L2-control-interface/20210805-224717
base:   bfee75f73c37a2f46a6326eaa06f5db701f76f01
config: m68k-allmodconfig (attached as .config)
compiler: m68k-linux-gcc (GCC) 10.3.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/16e1c749ce0c829d7984d7c3b43d4f01cc27232d
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Andrzej-Pietrasiewicz/VP9-codec-V4L2-control-interface/20210805-224717
        git checkout 16e1c749ce0c829d7984d7c3b43d4f01cc27232d
        # save the attached .config to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.3.0 make.cross O=build_dir ARCH=m68k SHELL=/bin/bash drivers/staging/

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/staging/media/hantro/imx8m_vpu_hw.c:137:13: error: 'V4L2_PIX_FMT_NV12_4L4' undeclared here (not in a function); did you mean 'V4L2_PIX_FMT_NV12M'?
     137 |   .fourcc = V4L2_PIX_FMT_NV12_4L4,
         |             ^~~~~~~~~~~~~~~~~~~~~
         |             V4L2_PIX_FMT_NV12M


vim +137 drivers/staging/media/hantro/imx8m_vpu_hw.c

   134	
   135	static const struct hantro_fmt imx8m_vpu_g2_dec_fmts[] = {
   136		{
 > 137			.fourcc = V4L2_PIX_FMT_NV12_4L4,
   138			.codec_mode = HANTRO_MODE_NONE,
   139		},
   140		{
   141			.fourcc = V4L2_PIX_FMT_HEVC_SLICE,
   142			.codec_mode = HANTRO_MODE_HEVC_DEC,
   143			.max_depth = 2,
   144			.frmsize = {
   145				.min_width = 48,
   146				.max_width = 3840,
   147				.step_width = MB_DIM,
   148				.min_height = 48,
   149				.max_height = 2160,
   150				.step_height = MB_DIM,
   151			},
   152		},
   153	};
   154	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 60698 bytes --]

  reply	other threads:[~2021-08-05 19:30 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-05 14:42 [PATCH v3 00/10] VP9 codec V4L2 control interface Andrzej Pietrasiewicz
2021-08-05 14:42 ` Andrzej Pietrasiewicz
2021-08-05 14:42 ` Andrzej Pietrasiewicz
2021-08-05 14:42 ` [PATCH v3 01/10] hantro: postproc: Fix motion vector space size Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42 ` [PATCH v3 02/10] hantro: postproc: Introduce struct hantro_postproc_ops Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42 ` [PATCH v3 03/10] hantro: Simplify postprocessor Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42 ` [PATCH v3 04/10] hantro: Add quirk for NV12/NV12_4L4 capture format Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 19:29   ` kernel test robot [this message]
2021-08-05 19:29     ` kernel test robot
2021-08-05 19:29     ` kernel test robot
2021-08-05 19:29     ` kernel test robot
2021-08-05 14:42 ` [PATCH v3 05/10] media: uapi: Add VP9 stateless decoder controls Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-09 18:04   ` Jernej Škrabec
2021-08-09 18:04     ` Jernej Škrabec
2021-08-09 18:04     ` Jernej Škrabec
2021-08-09 18:36     ` Ezequiel Garcia
2021-08-09 18:36       ` Ezequiel Garcia
2021-08-09 18:36       ` Ezequiel Garcia
2021-08-09 18:36       ` Ezequiel Garcia
2021-08-17 17:49   ` Nicolas Dufresne
2021-08-17 17:49     ` Nicolas Dufresne
2021-08-17 17:49     ` Nicolas Dufresne
2021-08-17 17:49     ` Nicolas Dufresne
2021-08-05 14:42 ` [PATCH v3 06/10] media: Add VP9 v4l2 library Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42 ` [PATCH v3 07/10] media: rkvdec: Add the VP9 backend Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 20:14   ` kernel test robot
2021-08-05 14:42 ` [PATCH v3 08/10] media: hantro: Prepare for other G2 codecs Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42 ` [PATCH v3 09/10] media: hantro: Support VP9 on the G2 core Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-09 17:07   ` Jernej Škrabec
2021-08-09 17:07     ` Jernej Škrabec
2021-08-09 17:07     ` Jernej Škrabec
2021-08-05 14:42 ` [PATCH v3 10/10] media: hantro: Support NV12 " Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz
2021-08-05 14:42   ` Andrzej Pietrasiewicz

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=202108060354.a1d3wFC7-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=andrzej.p@collabora.com \
    --cc=bbrezillon@kernel.org \
    --cc=benjamin.gaignard@collabora.com \
    --cc=elezegarcia@gmail.com \
    --cc=festevam@gmail.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-rockchip@lists.infradead.org \
    --cc=linux-staging@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 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.