From: kernel test robot <lkp@intel.com>
To: Eugen Hristev <eugen.hristev@microchip.com>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org
Subject: Re: [PATCH v8 08/13] media: atmel: atmel-isc: change format propagation to subdev into only verification
Date: Thu, 10 Mar 2022 07:13:08 +0800 [thread overview]
Message-ID: <202203100702.sKbUGmsv-lkp@intel.com> (raw)
In-Reply-To: <20220309163758.2672727-9-eugen.hristev@microchip.com>
Hi Eugen,
I love your patch! Perhaps something to improve:
[auto build test WARNING on media-tree/master]
[also build test WARNING on next-20220309]
[cannot apply to robh/for-next linux/master linus/master v5.17-rc7]
[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/Eugen-Hristev/media-atmel-atmel-isc-implement-media-controller/20220310-010819
base: git://linuxtv.org/media_tree.git master
config: arm64-randconfig-r011-20220309 (https://download.01.org/0day-ci/archive/20220310/202203100702.sKbUGmsv-lkp@intel.com/config)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project 276ca87382b8f16a65bddac700202924228982f6)
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
# install arm64 cross compiling tool for clang build
# apt-get install binutils-aarch64-linux-gnu
# https://github.com/0day-ci/linux/commit/9309e70b1b6779814e915f8e103048c6681f280f
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Eugen-Hristev/media-atmel-atmel-isc-implement-media-controller/20220310-010819
git checkout 9309e70b1b6779814e915f8e103048c6681f280f
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=arm64 SHELL=/bin/bash drivers/media/platform/atmel/
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/media/platform/atmel/atmel-isc-base.c:1955:5: warning: no previous prototype for function 'isc_link_validate' [-Wmissing-prototypes]
int isc_link_validate(struct media_link *link)
^
drivers/media/platform/atmel/atmel-isc-base.c:1955:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
int isc_link_validate(struct media_link *link)
^
static
1 warning generated.
vim +/isc_link_validate +1955 drivers/media/platform/atmel/atmel-isc-base.c
1954
> 1955 int isc_link_validate(struct media_link *link)
1956 {
1957 struct video_device *vdev =
1958 media_entity_to_video_device(link->sink->entity);
1959 struct isc_device *isc = video_get_drvdata(vdev);
1960 int ret;
1961
1962 ret = v4l2_subdev_link_validate(link);
1963 if (ret)
1964 return ret;
1965
1966 return isc_validate(isc);
1967 }
1968
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
next prev parent reply other threads:[~2022-03-09 23:13 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-09 16:37 [PATCH v8 00/13] media: atmel: atmel-isc: implement media controller Eugen Hristev
2022-03-09 16:37 ` Eugen Hristev
2022-03-09 16:37 ` [PATCH v8 01/13] media: atmel: atmel-isc-base: use streaming status when queueing buffers Eugen Hristev
2022-03-09 16:37 ` Eugen Hristev
2022-03-09 16:37 ` [PATCH v8 02/13] media: atmel: atmel-isc-base: replace is_streaming call in s_fmt_vid_cap Eugen Hristev
2022-03-09 16:37 ` Eugen Hristev
2022-03-09 16:37 ` [PATCH v8 03/13] media: atmel: atmel-isc: remove redundant comments Eugen Hristev
2022-03-09 16:37 ` Eugen Hristev
2022-03-09 16:37 ` [PATCH v8 04/13] media: atmel: atmel-isc: implement media controller Eugen Hristev
2022-03-09 16:37 ` Eugen Hristev
2022-03-09 16:37 ` [PATCH v8 05/13] media: atmel: atmel-sama5d2-isc: fix wrong mask in YUYV format check Eugen Hristev
2022-03-09 16:37 ` Eugen Hristev
2022-03-09 16:37 ` [PATCH v8 06/13] media: atmel: atmel-isc-base: use mutex to lock awb workqueue from streaming Eugen Hristev
2022-03-09 16:37 ` Eugen Hristev
2022-03-09 16:37 ` [PATCH v8 07/13] media: atmel: atmel-isc: compact the controller formats list Eugen Hristev
2022-03-09 16:37 ` Eugen Hristev
2022-03-09 16:37 ` [PATCH v8 08/13] media: atmel: atmel-isc: change format propagation to subdev into only verification Eugen Hristev
2022-03-09 16:37 ` Eugen Hristev
2022-03-09 23:13 ` kernel test robot [this message]
2022-03-09 16:37 ` [PATCH v8 09/13] media: atmel: atmel-sama7g5-isc: remove stray line Eugen Hristev
2022-03-09 16:37 ` Eugen Hristev
2022-03-09 16:37 ` [PATCH v8 10/13] dt-bindings: media: microchip, xisc: add bus-width of 14 Eugen Hristev
2022-03-09 16:37 ` [PATCH v8 10/13] dt-bindings: media: microchip,xisc: " Eugen Hristev
2022-03-09 16:37 ` [PATCH v8 11/13] ARM: dts: at91: sama7g5: add nodes for video capture Eugen Hristev
2022-03-09 16:37 ` Eugen Hristev
2022-03-09 16:37 ` [PATCH v8 12/13] ARM: configs: at91: sama7: add xisc and csi2dc Eugen Hristev
2022-03-09 16:37 ` Eugen Hristev
2022-03-09 16:37 ` [PATCH v8 13/13] ARM: multi_v7_defconfig: add atmel video pipeline modules Eugen Hristev
2022-03-09 16:37 ` Eugen Hristev
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=202203100702.sKbUGmsv-lkp@intel.com \
--to=lkp@intel.com \
--cc=eugen.hristev@microchip.com \
--cc=kbuild-all@lists.01.org \
--cc=llvm@lists.linux.dev \
/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.