public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: jacopo mondi <jacopo@jmondi.org>
To: kbuild test robot <lkp@intel.com>
Cc: Jacopo Mondi <jacopo+renesas@jmondi.org>,
	kbuild-all@01.org, Mauro Carvalho Chehab <m.chehab@samsung.com>,
	linux-media@vger.kernel.org,
	Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>,
	Sakari Ailus <sakari.ailus@linux.intel.com>
Subject: Re: [ragnatech:media-tree 273/382] drivers/media/i2c/mt9v111.c:801:10: error: implicit declaration of function 'v4l2_subdev_get_try_format'; did you mean 'v4l2_subdev_notify_event'?
Date: Sun, 5 Aug 2018 11:36:05 +0200	[thread overview]
Message-ID: <20180805093605.GI4528@w540> (raw)
In-Reply-To: <201808050155.97R8Urh7%fengguang.wu@intel.com>

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

On Sun, Aug 05, 2018 at 01:14:58AM +0800, kbuild test robot wrote:
> tree:   git://git.ragnatech.se/linux media-tree
> head:   12f336c88090fb8004736fd4329184326a49673b
> commit: aab7ed1c392703604fbdc5bd5005dfb61a0b32f9 [273/382] media: i2c: Add driver for Aptina MT9V111
> config: x86_64-randconfig-x010-201831 (attached as .config)
> compiler: gcc-7 (Debian 7.3.0-16) 7.3.0
> reproduce:
>         git checkout aab7ed1c392703604fbdc5bd5005dfb61a0b32f9
>         # save the attached .config to linux build tree
>         make ARCH=x86_64
>
> All error/warnings (new ones prefixed by >>):
>
>    drivers/media/i2c/mt9v111.c: In function '__mt9v111_get_pad_format':
> >> drivers/media/i2c/mt9v111.c:801:10: error: implicit declaration of function 'v4l2_subdev_get_try_format'; did you mean 'v4l2_subdev_notify_event'? [-Werror=implicit-function-declaration]
>       return v4l2_subdev_get_try_format(&mt9v111->sd, cfg, pad);
>              ^~~~~~~~~~~~~~~~~~~~~~~~~~

I have received this notification a few times now, and it comes from
the test build being run a kernel configured without the
CONFIG_VIDEO_V4L2_SUBDEV_API symbol.

The mt9v111 driver does not list CONFIG_VIDEO_V4L2_SUBDEV_API as a
Kconfig dependency and the option does not get selected by the config
generated by kbuild, I guess.

Should I list CONFIG_VIDEO_V4L2_SUBDEV_API as an mt9v111 dependency
with an incremental patch?

>              v4l2_subdev_notify_event
> >> drivers/media/i2c/mt9v111.c:801:10: warning: return makes pointer from integer without a cast [-Wint-conversion]
>       return v4l2_subdev_get_try_format(&mt9v111->sd, cfg, pad);
>              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>    drivers/media/i2c/mt9v111.c: In function 'mt9v111_set_format':
>    drivers/media/i2c/mt9v111.c:887:15: warning: 'idx' may be used uninitialized in this function [-Wmaybe-uninitialized]
>      unsigned int idx;
>                   ^~~
>    cc1: some warnings being treated as errors
>
> vim +801 drivers/media/i2c/mt9v111.c
>
>    791
>    792	static struct v4l2_mbus_framefmt *__mt9v111_get_pad_format(
>    793						struct mt9v111_dev *mt9v111,
>    794						struct v4l2_subdev_pad_config *cfg,
>    795						unsigned int pad,
>    796						enum v4l2_subdev_format_whence which)
>    797	{
>    798		switch (which) {
>    799		case V4L2_SUBDEV_FORMAT_TRY:
>    800	#if IS_ENABLED(CONFIG_MEDIA_CONTROLLER)
>  > 801			return v4l2_subdev_get_try_format(&mt9v111->sd, cfg, pad);
>    802	#else
>    803			return &cfg->try_fmt;
>    804	#endif
>    805		case V4L2_SUBDEV_FORMAT_ACTIVE:
>    806			return &mt9v111->fmt;
>    807		default:
>    808			return NULL;
>    809		}
>    810	}
>    811
>
> ---
> 0-DAY kernel test infrastructure                Open Source Technology Center
> https://lists.01.org/pipermail/kbuild-all                   Intel Corporation



[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

  reply	other threads:[~2018-08-05 11:40 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-04 17:14 [ragnatech:media-tree 273/382] drivers/media/i2c/mt9v111.c:801:10: error: implicit declaration of function 'v4l2_subdev_get_try_format'; did you mean 'v4l2_subdev_notify_event'? kbuild test robot
2018-08-05  9:36 ` jacopo mondi [this message]
2018-08-05  9:59   ` Hans Verkuil
2018-08-05 10:09     ` jacopo mondi
2018-08-05 10:21       ` Hans Verkuil
2018-08-05 13:55       ` Mauro Carvalho Chehab
2018-08-05 17:15         ` jacopo mondi

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=20180805093605.GI4528@w540 \
    --to=jacopo@jmondi.org \
    --cc=jacopo+renesas@jmondi.org \
    --cc=kbuild-all@01.org \
    --cc=kieran.bingham+renesas@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    --cc=lkp@intel.com \
    --cc=m.chehab@samsung.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox