All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v5 11/13] media: hantro: Introduce G2/HEVC decoder
Date: Thu, 18 Mar 2021 03:28:09 +0800	[thread overview]
Message-ID: <202103180345.v5GE3usc-lkp@intel.com> (raw)
In-Reply-To: <20210317173202.107519-12-benjamin.gaignard@collabora.com>

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

Hi Benjamin,

I love your patch! Perhaps something to improve:

[auto build test WARNING on sunxi/sunxi/for-next]
[also build test WARNING on robh/for-next v5.12-rc3 next-20210317]
[cannot apply to linuxtv-media/master]
[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]

url:    https://github.com/0day-ci/linux/commits/Benjamin-Gaignard/Add-HANTRO-G2-HEVC-decoder-support-for-IMX8MQ/20210318-013515
base:   https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git sunxi/for-next
config: nios2-allyesconfig (attached as .config)
compiler: nios2-linux-gcc (GCC) 9.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/92ff85add6e176c236b18f2a6a3e86468e5fb849
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Benjamin-Gaignard/Add-HANTRO-G2-HEVC-decoder-support-for-IMX8MQ/20210318-013515
        git checkout 92ff85add6e176c236b18f2a6a3e86468e5fb849
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=nios2 

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

All warnings (new ones prefixed by >>):

>> drivers/staging/media/hantro/hantro_g2_hevc_dec.c:520:6: warning: no previous prototype for 'hantro_g2_check_idle' [-Wmissing-prototypes]
     520 | void hantro_g2_check_idle(struct hantro_dev *vpu)
         |      ^~~~~~~~~~~~~~~~~~~~


vim +/hantro_g2_check_idle +520 drivers/staging/media/hantro/hantro_g2_hevc_dec.c

   519	
 > 520	void hantro_g2_check_idle(struct hantro_dev *vpu)
   521	{
   522		int i;
   523	
   524		for (i = 0; i < 3; i++) {
   525			u32 status;
   526	
   527			/* Make sure the VPU is idle */
   528			status = vdpu_read(vpu, HEVC_REG_INTERRUPT);
   529			if (status & HEVC_REG_INTERRUPT_DEC_E) {
   530				dev_warn(vpu->dev, "device still running, aborting");
   531				status |= HEVC_REG_INTERRUPT_DEC_ABORT_E | HEVC_REG_INTERRUPT_DEC_IRQ_DIS;
   532				vdpu_write(vpu, status, HEVC_REG_INTERRUPT);
   533			}
   534		}
   535	}
   536	

---
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: 58972 bytes --]

  reply	other threads:[~2021-03-17 19:28 UTC|newest]

Thread overview: 58+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-17 17:31 [PATCH v5 00/13] Add HANTRO G2/HEVC decoder support for IMX8MQ Benjamin Gaignard
2021-03-17 17:31 ` Benjamin Gaignard
2021-03-17 17:31 ` Benjamin Gaignard
2021-03-17 17:31 ` Benjamin Gaignard
2021-03-17 17:31 ` [PATCH v5 01/13] dt-bindings: mfd: Add 'nxp,imx8mq-vpu-ctrl' to syscon list Benjamin Gaignard
2021-03-17 17:31   ` [PATCH v5 01/13] dt-bindings: mfd: Add 'nxp, imx8mq-vpu-ctrl' " Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31 ` [PATCH v5 02/13] dt-bindings: media: nxp,imx8mq-vpu: Update the bindings for G2 support Benjamin Gaignard
2021-03-17 17:31   ` [PATCH v5 02/13] dt-bindings: media: nxp, imx8mq-vpu: " Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31 ` [PATCH v5 03/13] media: hantro: Use syscon instead of 'ctrl' register Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31 ` [PATCH v5 04/13] media: hevc: Add fields and flags for hevc PPS Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31 ` [PATCH v5 05/13] media: hevc: Add decode params control Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-18  2:29   ` kernel test robot
2021-03-17 17:31 ` [PATCH v5 06/13] media: hantro: change hantro_codec_ops run prototype to return errors Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31 ` [PATCH v5 07/13] media: hantro: Define HEVC codec profiles and supported features Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31 ` [PATCH v5 08/13] media: hantro: Only use postproc when post processed formats are defined Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31 ` [PATCH v5 09/13] media: uapi: Add a control for HANTRO driver Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31 ` [PATCH v5 10/13] media: hantro: handle V4L2_PIX_FMT_HEVC_SLICE control Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:31   ` Benjamin Gaignard
2021-03-17 17:32 ` [PATCH v5 11/13] media: hantro: Introduce G2/HEVC decoder Benjamin Gaignard
2021-03-17 17:32   ` Benjamin Gaignard
2021-03-17 17:32   ` Benjamin Gaignard
2021-03-17 17:32   ` Benjamin Gaignard
2021-03-17 19:28   ` kernel test robot [this message]
2021-03-17 17:32 ` [PATCH v5 12/13] media: hantro: IMX8M: add variant for G2/HEVC codec Benjamin Gaignard
2021-03-17 17:32   ` Benjamin Gaignard
2021-03-17 17:32   ` Benjamin Gaignard
2021-03-17 17:32   ` Benjamin Gaignard
2021-03-17 17:32 ` [PATCH v5 13/13] arm64: dts: imx8mq: Add node to G2 hardware Benjamin Gaignard
2021-03-17 17:32   ` Benjamin Gaignard
2021-03-17 17:32   ` Benjamin Gaignard
2021-03-17 17:32   ` Benjamin Gaignard

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=202103180345.v5GE3usc-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    /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.