All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Jung Zhao <jung.zhao@rock-chips.com>
Cc: kbuild-all@01.org, pawel@osciak.com, m.szyprowski@samsung.com,
	kyungmin.park@samsung.com, mchehab@osg.samsung.com,
	heiko@sntech.de, linux-rockchip@lists.infradead.org,
	herman.chen@rock-chips.com, alpha.lin@rock-chips.com,
	zhaojun <jung.zhao@rock-chips.com>,
	Antti Palosaari <crope@iki.fi>,
	linux-api@vger.kernel.org, Benoit Parrot <bparrot@ti.com>,
	Philipp Zabel <p.zabel@pengutronix.de>,
	linux-kernel@vger.kernel.org,
	Sakari Ailus <sakari.ailus@linux.intel.com>,
	Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>,
	Hans Verkuil <hans.verkuil@cisco.com>,
	linux-media@vger.kernel.org
Subject: Re: [PATCH v1 1/3] media: v4l: Add VP8 format support in V4L2 framework
Date: Tue, 26 Jan 2016 17:16:50 +0800	[thread overview]
Message-ID: <201601261736.Z1YOYKHt%fengguang.wu@intel.com> (raw)
In-Reply-To: <1453799046-307-2-git-send-email-jung.zhao@rock-chips.com>

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

Hi zhaojun,

[auto build test ERROR on rockchip/for-next]
[also build test ERROR on v4.5-rc1 next-20160125]
[if your patch is applied to the wrong git tree, please drop us a note to help improving the system]

url:    https://github.com/0day-ci/linux/commits/Jung-Zhao/Add-VP8-deocder-for-rk3229-rk3288/20160126-170940
base:   https://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git for-next
config: x86_64-randconfig-x012-01260845 (attached as .config)
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   drivers/media/v4l2-core/v4l2-ctrls.c: In function 'v4l2_ctrl_new':
>> drivers/media/v4l2-core/v4l2-ctrls.c:1994:28: error: 'V4L2_CTRL_FLAG_REQ_KEEP' undeclared (first use in this function)
     if ((is_array || (flags & V4L2_CTRL_FLAG_REQ_KEEP)) &&
                               ^
   drivers/media/v4l2-core/v4l2-ctrls.c:1994:28: note: each undeclared identifier is reported only once for each function it appears in

vim +/V4L2_CTRL_FLAG_REQ_KEEP +1994 drivers/media/v4l2-core/v4l2-ctrls.c

  1988			return NULL;
  1989		}
  1990		if (type == V4L2_CTRL_TYPE_BITMASK && ((def & ~max) || min || step)) {
  1991			handler_set_err(hdl, -ERANGE);
  1992			return NULL;
  1993		}
> 1994		if ((is_array || (flags & V4L2_CTRL_FLAG_REQ_KEEP)) &&
  1995		    (type == V4L2_CTRL_TYPE_BUTTON ||
  1996		     type == V4L2_CTRL_TYPE_CTRL_CLASS)) {
  1997			handler_set_err(hdl, -EINVAL);

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 26697 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
Cc: kbuild-all@01.org, pawel@osciak.com, m.szyprowski@samsung.com,
	kyungmin.park@samsung.com, mchehab@osg.samsung.com,
	heiko@sntech.de, linux-rockchip@lists.infradead.org,
	herman.chen@rock-chips.com, alpha.lin@rock-chips.com,
	zhaojun <jung.zhao@rock-chips.com>,
	Antti Palosaari <crope@iki.fi>,
	linux-api@vger.kernel.org, Benoit Parrot <bparrot@ti.com>,
	Philipp Zabel <p.zabel@pengutronix.de>,
	linux-kernel@vger.kernel.org,
	Sakari Ailus <sakari.ailus@linux.intel.com>,
	Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>,
	Hans Verkuil <hans.verkuil@cisco.com>,
	linux-media@vger.kernel.org
Subject: Re: [PATCH v1 1/3] media: v4l: Add VP8 format support in V4L2 framework
Date: Tue, 26 Jan 2016 17:16:50 +0800	[thread overview]
Message-ID: <201601261736.Z1YOYKHt%fengguang.wu@intel.com> (raw)
In-Reply-To: <1453799046-307-2-git-send-email-jung.zhao@rock-chips.com>

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

Hi zhaojun,

[auto build test ERROR on rockchip/for-next]
[also build test ERROR on v4.5-rc1 next-20160125]
[if your patch is applied to the wrong git tree, please drop us a note to help improving the system]

url:    https://github.com/0day-ci/linux/commits/Jung-Zhao/Add-VP8-deocder-for-rk3229-rk3288/20160126-170940
base:   https://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git for-next
config: x86_64-randconfig-x012-01260845 (attached as .config)
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   drivers/media/v4l2-core/v4l2-ctrls.c: In function 'v4l2_ctrl_new':
>> drivers/media/v4l2-core/v4l2-ctrls.c:1994:28: error: 'V4L2_CTRL_FLAG_REQ_KEEP' undeclared (first use in this function)
     if ((is_array || (flags & V4L2_CTRL_FLAG_REQ_KEEP)) &&
                               ^
   drivers/media/v4l2-core/v4l2-ctrls.c:1994:28: note: each undeclared identifier is reported only once for each function it appears in

vim +/V4L2_CTRL_FLAG_REQ_KEEP +1994 drivers/media/v4l2-core/v4l2-ctrls.c

  1988			return NULL;
  1989		}
  1990		if (type == V4L2_CTRL_TYPE_BITMASK && ((def & ~max) || min || step)) {
  1991			handler_set_err(hdl, -ERANGE);
  1992			return NULL;
  1993		}
> 1994		if ((is_array || (flags & V4L2_CTRL_FLAG_REQ_KEEP)) &&
  1995		    (type == V4L2_CTRL_TYPE_BUTTON ||
  1996		     type == V4L2_CTRL_TYPE_CTRL_CLASS)) {
  1997			handler_set_err(hdl, -EINVAL);

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 26697 bytes --]

  reply	other threads:[~2016-01-26  9:17 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-26  9:04 [PATCH v1 0/3] Add VP8 deocder for rk3229 & rk3288 Jung Zhao
2016-01-26  9:04 ` Jung Zhao
2016-01-26  9:04 ` Jung Zhao
2016-01-26  9:04 ` [PATCH v1 1/3] media: v4l: Add VP8 format support in V4L2 framework Jung Zhao
2016-01-26  9:04   ` Jung Zhao
2016-01-26  9:16   ` kbuild test robot [this message]
2016-01-26  9:16     ` kbuild test robot
2016-01-26  9:29   ` Heiko Stübner
2016-01-26 23:53   ` Nicolas Dufresne
2016-01-26 23:53     ` Nicolas Dufresne
2016-01-27 10:21     ` Enric Balletbo Serra
2016-01-27 14:06       ` 答复: " Jung Zhao
2016-01-27 14:06         ` Jung Zhao
2016-02-03 13:14   ` Marek Szyprowski
2016-01-26  9:04 ` [PATCH v1 2/3] media: VPU: support Rockchip VPU Jung Zhao
2016-01-26  9:04   ` Jung Zhao
2016-01-26  9:04   ` Jung Zhao
2016-01-26 13:53   ` Enric Balletbo Serra
2016-01-26 13:53     ` Enric Balletbo Serra
2016-01-26  9:04 ` [PATCH v1 3/3] media: vcodec: rockchip: Add Rockchip VP8 decoder driver Jung Zhao
2016-01-26  9:04   ` Jung Zhao
2016-01-26  9:04   ` Jung Zhao
2016-01-26  9:30 ` [PATCH v1 0/3] Add VP8 deocder for rk3229 & rk3288 Shawn Lin
2016-01-26  9:30   ` Shawn Lin
2016-01-26  9:30   ` Shawn Lin
2016-01-26 14:00   ` Enric Balletbo Serra
2016-01-26 14:00     ` Enric Balletbo Serra
2016-01-26 14:00     ` Enric Balletbo Serra

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=201601261736.Z1YOYKHt%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=alpha.lin@rock-chips.com \
    --cc=bparrot@ti.com \
    --cc=crope@iki.fi \
    --cc=hans.verkuil@cisco.com \
    --cc=heiko@sntech.de \
    --cc=herman.chen@rock-chips.com \
    --cc=jung.zhao@rock-chips.com \
    --cc=kbuild-all@01.org \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-rockchip@lists.infradead.org \
    --cc=m.szyprowski@samsung.com \
    --cc=mchehab@osg.samsung.com \
    --cc=p.zabel@pengutronix.de \
    --cc=pawel@osciak.com \
    --cc=ricardo.ribalda@gmail.com \
    --cc=sakari.ailus@linux.intel.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.