All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Helen Koike <helen.koike@collabora.co.uk>
Cc: kbuild-all@01.org, linux-media@vger.kernel.org,
	laurent.pinchart@ideasonboard.com, hverkuil@xs4all.nl,
	jgebben@codeaurora.org, mchehab@osg.samsung.com,
	Helen Fornazier <helen.fornazier@gmail.com>
Subject: Re: [PATCH v4] [media] vimc: Virtual Media Controller core, capture and sensor
Date: Sun, 12 Jun 2016 09:59:30 +0800	[thread overview]
Message-ID: <201606120923.hGvLn7kB%fengguang.wu@intel.com> (raw)
In-Reply-To: <1464706979-32340-1-git-send-email-helen.koike@collabora.co.uk>

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

Hi,

[auto build test ERROR on linuxtv-media/master]
[also build test ERROR on v4.7-rc2 next-20160609]
[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/Helen-Koike/vimc-Virtual-Media-Controller-core-capture-and-sensor/20160531-230840
base:   git://linuxtv.org/media_tree.git master
config: i386-randconfig-x010-06120748 (attached as .config)
compiler: gcc-6 (Debian 6.1.1-1) 6.1.1 20160430
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

All error/warnings (new ones prefixed by >>):

warning: (VIDEO_VIMC) selects VIDEO_V4L2_SUBDEV_API which has unmet direct dependencies (MEDIA_SUPPORT && VIDEO_DEV && MEDIA_CONTROLLER)
   In file included from include/linux/init.h:4:0,
                    from drivers/media/pci/cx88/cx88-cards.c:23:
   include/media/v4l2-subdev.h: In function 'v4l2_subdev_get_try_format':
>> include/media/v4l2-subdev.h:770:19: error: 'struct v4l2_subdev' has no member named 'entity'
      BUG_ON(pad >= sd->entity.num_pads);   \
                      ^
   include/linux/compiler.h:170:42: note: in definition of macro 'unlikely'
    # define unlikely(x) __builtin_expect(!!(x), 0)
                                             ^
>> include/media/v4l2-subdev.h:770:3: note: in expansion of macro 'BUG_ON'
      BUG_ON(pad >= sd->entity.num_pads);   \
      ^~~~~~
>> include/media/v4l2-subdev.h:774:1: note: in expansion of macro '__V4L2_SUBDEV_MK_GET_TRY'
    __V4L2_SUBDEV_MK_GET_TRY(v4l2_mbus_framefmt, v4l2_subdev_get_try_format, try_fmt)
    ^~~~~~~~~~~~~~~~~~~~~~~~
   include/media/v4l2-subdev.h: In function 'v4l2_subdev_get_try_crop':
>> include/media/v4l2-subdev.h:770:19: error: 'struct v4l2_subdev' has no member named 'entity'
      BUG_ON(pad >= sd->entity.num_pads);   \
                      ^
   include/linux/compiler.h:170:42: note: in definition of macro 'unlikely'
    # define unlikely(x) __builtin_expect(!!(x), 0)
                                             ^
>> include/media/v4l2-subdev.h:770:3: note: in expansion of macro 'BUG_ON'
      BUG_ON(pad >= sd->entity.num_pads);   \
      ^~~~~~
   include/media/v4l2-subdev.h:775:1: note: in expansion of macro '__V4L2_SUBDEV_MK_GET_TRY'
    __V4L2_SUBDEV_MK_GET_TRY(v4l2_rect, v4l2_subdev_get_try_crop, try_crop)
    ^~~~~~~~~~~~~~~~~~~~~~~~
   include/media/v4l2-subdev.h: In function 'v4l2_subdev_get_try_compose':
>> include/media/v4l2-subdev.h:770:19: error: 'struct v4l2_subdev' has no member named 'entity'
      BUG_ON(pad >= sd->entity.num_pads);   \
                      ^
   include/linux/compiler.h:170:42: note: in definition of macro 'unlikely'
    # define unlikely(x) __builtin_expect(!!(x), 0)
                                             ^
>> include/media/v4l2-subdev.h:770:3: note: in expansion of macro 'BUG_ON'
      BUG_ON(pad >= sd->entity.num_pads);   \
      ^~~~~~
   include/media/v4l2-subdev.h:776:1: note: in expansion of macro '__V4L2_SUBDEV_MK_GET_TRY'
    __V4L2_SUBDEV_MK_GET_TRY(v4l2_rect, v4l2_subdev_get_try_compose, try_compose)
    ^~~~~~~~~~~~~~~~~~~~~~~~

vim +770 include/media/v4l2-subdev.h

5e6ff7c1 Sakari Ailus      2012-02-15  764  #define __V4L2_SUBDEV_MK_GET_TRY(rtype, fun_name, field_name)		\
5e6ff7c1 Sakari Ailus      2012-02-15  765  	static inline struct rtype *					\
f7234138 Hans Verkuil      2015-03-04  766  	fun_name(struct v4l2_subdev *sd,				\
f7234138 Hans Verkuil      2015-03-04  767  		 struct v4l2_subdev_pad_config *cfg,			\
5e6ff7c1 Sakari Ailus      2012-02-15  768  		 unsigned int pad)					\
5e6ff7c1 Sakari Ailus      2012-02-15  769  	{								\
f7234138 Hans Verkuil      2015-03-04 @770  		BUG_ON(pad >= sd->entity.num_pads);			\
f7234138 Hans Verkuil      2015-03-04  771  		return &cfg[pad].field_name;				\
7cd5a16b Stanimir Varbanov 2010-05-21  772  	}
7cd5a16b Stanimir Varbanov 2010-05-21  773  
f7234138 Hans Verkuil      2015-03-04 @774  __V4L2_SUBDEV_MK_GET_TRY(v4l2_mbus_framefmt, v4l2_subdev_get_try_format, try_fmt)
f7234138 Hans Verkuil      2015-03-04  775  __V4L2_SUBDEV_MK_GET_TRY(v4l2_rect, v4l2_subdev_get_try_crop, try_crop)
f7234138 Hans Verkuil      2015-03-04  776  __V4L2_SUBDEV_MK_GET_TRY(v4l2_rect, v4l2_subdev_get_try_compose, try_compose)
7cd5a16b Stanimir Varbanov 2010-05-21  777  #endif

:::::: The code at line 770 was first introduced by commit
:::::: f7234138f14c2296c5eb6b8224abe00b507faf3f [media] v4l2-subdev: replace v4l2_subdev_fh by v4l2_subdev_pad_config

:::::: TO: Hans Verkuil <hans.verkuil@cisco.com>
:::::: CC: Mauro Carvalho Chehab <mchehab@osg.samsung.com>

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

  reply	other threads:[~2016-06-12  2:13 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-31 15:02 [PATCH v4] [media] vimc: Virtual Media Controller core, capture and sensor Helen Koike
2016-06-12  1:59 ` kbuild test robot [this message]
2016-06-12  2:11 ` kbuild test robot
2016-07-01 12:39 ` Hans Verkuil
2016-08-17 22:08   ` Helen Koike
2016-08-17 22:09   ` [PATCH v5] " Helen Koike
2016-08-22 10:57     ` Hans Verkuil
2016-09-04 20:02       ` [PATCH v6] " Helen Koike
2016-09-06  7:33         ` Hans Verkuil
2016-09-12 12:53           ` [PATCH] [media] MAINTAINERS: add vimc entry Helen Koike
2017-01-10 19:54         ` [PATCH v6] [media] vimc: Virtual Media Controller core, capture and sensor Laurent Pinchart
2017-01-11  1:30           ` Helen Koike
2017-03-10 13:08             ` Hans Verkuil
2017-03-10 13:42               ` Helen Koike
2017-03-25 17:11                 ` [PATCH v7] " Helen Koike
2017-03-25 23:04                   ` Helen Koike
2017-03-26 13:31                   ` Sakari Ailus
2017-03-27 15:19                     ` Helen Koike
2017-03-27 18:09                       ` Mauro Carvalho Chehab
2017-03-28 10:00                         ` Hans Verkuil
2017-03-28 11:38                           ` Mauro Carvalho Chehab
2017-03-28 20:37                             ` Sakari Ailus
2017-03-29  7:49                               ` Hans Verkuil
2017-03-29  8:46                                 ` Sakari Ailus
     [not found]                               ` <CAKQmDh9QoW7qnai=i68HBBbkLBa+Ni5K7WKeYDLONjYeyhHH0A@mail.gmail.com>
2017-03-29  8:02                                 ` Hans Verkuil
2017-03-28 14:23                           ` Sakari Ailus
2017-03-28 15:25                             ` Mauro Carvalho Chehab
2017-03-28 20:39                               ` Sakari Ailus
2017-03-29  7:39                             ` Hans Verkuil
2017-03-27  9:00                   ` Hans Verkuil
2017-03-27 13:33                     ` [PATCH v8] " Helen Koike
2017-04-03 22:16                       ` [PATCH v9] " Helen Koike
2017-04-06 14:29                         ` Helen Koike
2017-04-07  9:54                         ` Hans Verkuil
2017-04-07 17:55                           ` [PATCH v10] " Helen Koike
2017-01-25 13:03         ` [PATCH v6] " Sakari Ailus
2017-01-25 15:31           ` Mauro Carvalho Chehab
2017-03-24 22:11           ` Helen Koike
2017-03-26 13:25             ` Sakari Ailus
2016-09-04 20:05       ` [PATCH v5] " Helen Koike
2016-09-05  9:01         ` Hans Verkuil

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=201606120923.hGvLn7kB%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=helen.fornazier@gmail.com \
    --cc=helen.koike@collabora.co.uk \
    --cc=hverkuil@xs4all.nl \
    --cc=jgebben@codeaurora.org \
    --cc=kbuild-all@01.org \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@osg.samsung.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.