From: kbuild test robot <lkp@intel.com>
To: Jacob Chen <jacob-chen@iotwrt.com>
Cc: kbuild-all@01.org, linux-rockchip@lists.infradead.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org,
heiko@sntech.de, robh+dt@kernel.org, mchehab@kernel.org,
linux-media@vger.kernel.org,
laurent.pinchart+renesas@ideasonboard.com,
hans.verkuil@cisco.com, tfiga@chromium.org, nicolas@ndufresne.ca,
Jacob Chen <jacob-chen@iotwrt.com>
Subject: Re: [PATCH v8 1/4] rockchip/rga: v4l2 m2m support
Date: Wed, 13 Sep 2017 18:04:31 +0800 [thread overview]
Message-ID: <201709131735.8RjddCdq%fengguang.wu@intel.com> (raw)
In-Reply-To: <1505126644-18396-2-git-send-email-jacob-chen@iotwrt.com>
[-- Attachment #1: Type: text/plain, Size: 2948 bytes --]
Hi Jacob,
[auto build test ERROR on linuxtv-media/master]
[also build test ERROR on v4.13 next-20170913]
[cannot apply to rockchip/for-next]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
url: https://github.com/0day-ci/linux/commits/Jacob-Chen/Add-Rockchip-RGA-V4l2-support/20170913-171106
base: git://linuxtv.org/media_tree.git master
config: ia64-allyesconfig (attached as .config)
compiler: ia64-linux-gcc (GCC) 6.2.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
make.cross ARCH=ia64
All errors (new ones prefixed by >>):
drivers/media/platform/rockchip-rga/rga.c: In function 'rga_setup_ctrls':
>> drivers/media/platform/rockchip-rga/rga.c:190:11: error: 'V4L2_CID_PORTER_DUFF_MODE' undeclared (first use in this function)
V4L2_CID_PORTER_DUFF_MODE,
^~~~~~~~~~~~~~~~~~~~~~~~~
drivers/media/platform/rockchip-rga/rga.c:190:11: note: each undeclared identifier is reported only once for each function it appears in
>> drivers/media/platform/rockchip-rga/rga.c:191:11: error: 'V4L2_PORTER_DUFF_CLEAR' undeclared (first use in this function)
V4L2_PORTER_DUFF_CLEAR, 0,
^~~~~~~~~~~~~~~~~~~~~~
>> drivers/media/platform/rockchip-rga/rga.c:192:11: error: 'V4L2_PORTER_DUFF_SRC' undeclared (first use in this function)
V4L2_PORTER_DUFF_SRC);
^~~~~~~~~~~~~~~~~~~~
vim +/V4L2_CID_PORTER_DUFF_MODE +190 drivers/media/platform/rockchip-rga/rga.c
182
183 static int rga_setup_ctrls(struct rga_ctx *ctx)
184 {
185 struct rockchip_rga *rga = ctx->rga;
186
187 v4l2_ctrl_handler_init(&ctx->ctrl_handler, 5);
188
189 v4l2_ctrl_new_std_menu(&ctx->ctrl_handler, &rga_ctrl_ops,
> 190 V4L2_CID_PORTER_DUFF_MODE,
> 191 V4L2_PORTER_DUFF_CLEAR, 0,
> 192 V4L2_PORTER_DUFF_SRC);
193
194 v4l2_ctrl_new_std(&ctx->ctrl_handler, &rga_ctrl_ops,
195 V4L2_CID_HFLIP, 0, 1, 1, 0);
196
197 v4l2_ctrl_new_std(&ctx->ctrl_handler, &rga_ctrl_ops,
198 V4L2_CID_VFLIP, 0, 1, 1, 0);
199
200 v4l2_ctrl_new_std(&ctx->ctrl_handler, &rga_ctrl_ops,
201 V4L2_CID_ROTATE, 0, 270, 90, 0);
202
203 v4l2_ctrl_new_std(&ctx->ctrl_handler, &rga_ctrl_ops,
204 V4L2_CID_BG_COLOR, 0, 0xffffffff, 1, 0);
205
206 if (ctx->ctrl_handler.error) {
207 int err = ctx->ctrl_handler.error;
208
209 v4l2_err(&rga->v4l2_dev, "%s failed\n", __func__);
210 v4l2_ctrl_handler_free(&ctx->ctrl_handler);
211 return err;
212 }
213
214 return 0;
215 }
216
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 51534 bytes --]
next prev parent reply other threads:[~2017-09-13 10:05 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-11 10:44 [PATCH v8 0/4] Add Rockchip RGA V4l2 support Jacob Chen
2017-09-11 10:44 ` [PATCH v8 1/4] rockchip/rga: v4l2 m2m support Jacob Chen
2017-09-13 10:04 ` kbuild test robot [this message]
2017-09-11 10:44 ` [PATCH v8 2/4] ARM: dts: rockchip: add RGA device node for RK3288 Jacob Chen
2017-09-11 10:44 ` [PATCH v8 3/4] arm64: dts: rockchip: add RGA device node for RK3399 Jacob Chen
2017-09-11 10:44 ` [PATCH v8 4/4] dt-bindings: Document the Rockchip RGA bindings Jacob Chen
2017-09-11 10:47 ` [PATCH v8 0/4] Add Rockchip RGA V4l2 support Jacob Chen
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=201709131735.8RjddCdq%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=devicetree@vger.kernel.org \
--cc=hans.verkuil@cisco.com \
--cc=heiko@sntech.de \
--cc=jacob-chen@iotwrt.com \
--cc=kbuild-all@01.org \
--cc=laurent.pinchart+renesas@ideasonboard.com \
--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=mchehab@kernel.org \
--cc=nicolas@ndufresne.ca \
--cc=robh+dt@kernel.org \
--cc=tfiga@chromium.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®