All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [RFC PATCH 5/5] adds i2c/ explicitly to Makefile
Date: Sat, 04 Dec 2021 09:21:25 +0800	[thread overview]
Message-ID: <202112040918.4eYGwkXT-lkp@intel.com> (raw)
In-Reply-To: <20211203221247.46324-6-petko.manolov@konsulko.com>

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

Hi Petko,

[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on v5.16-rc3]
[also build test WARNING on next-20211203]
[cannot apply to media-tree/master]
[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/Petko-Manolov/omv6211-linux-kernel-driver/20211204-061436
base:    d58071a8a76d779eedab38033ae4c821c30295a5
config: arc-allyesconfig (https://download.01.org/0day-ci/archive/20211204/202112040918.4eYGwkXT-lkp(a)intel.com/config)
compiler: arceb-elf-gcc (GCC) 11.2.0
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
        # https://github.com/0day-ci/linux/commit/e3654b0a5fdd1f9b3488b69bf8cc1a2613788f83
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Petko-Manolov/omv6211-linux-kernel-driver/20211204-061436
        git checkout e3654b0a5fdd1f9b3488b69bf8cc1a2613788f83
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=arc SHELL=/bin/bash drivers/staging/media/i2c/

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/staging/media/i2c/ovm6211.c:652:5: warning: no previous prototype for 'ovm6211_set_pix_clk' [-Wmissing-prototypes]
     652 | u32 ovm6211_set_pix_clk(struct ovm6211_dev *sensor, const struct ovm6211_mode_info *nm)
         |     ^~~~~~~~~~~~~~~~~~~


vim +/ovm6211_set_pix_clk +652 drivers/staging/media/i2c/ovm6211.c

a3407db075daa0 Petko Manolov 2021-12-04  651  
a3407db075daa0 Petko Manolov 2021-12-04 @652  u32 ovm6211_set_pix_clk(struct ovm6211_dev *sensor, const struct ovm6211_mode_info *nm)
a3407db075daa0 Petko Manolov 2021-12-04  653  {
a3407db075daa0 Petko Manolov 2021-12-04  654  	u32 s, fmt, fps, ret;
a3407db075daa0 Petko Manolov 2021-12-04  655  
a3407db075daa0 Petko Manolov 2021-12-04  656  	/* x * y * [1|2] * y8/y10 * fps */
a3407db075daa0 Petko Manolov 2021-12-04  657  	s = nm->width * nm->height;
a3407db075daa0 Petko Manolov 2021-12-04  658  	fmt = 1;
a3407db075daa0 Petko Manolov 2021-12-04  659  	fps = ovm6211_framerates[sensor->cur_fr_id];
a3407db075daa0 Petko Manolov 2021-12-04  660  	ret = s * fmt * fps * 2;
a3407db075daa0 Petko Manolov 2021-12-04  661  
a3407db075daa0 Petko Manolov 2021-12-04  662  	return ret;
a3407db075daa0 Petko Manolov 2021-12-04  663  }
a3407db075daa0 Petko Manolov 2021-12-04  664  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

  reply	other threads:[~2021-12-04  1:21 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-03 22:12 [RFC PATCH 0/5] omv6211 linux kernel driver Petko Manolov
2021-12-03 22:12 ` [RFC PATCH 1/5] adds ovm6211 driver to staging Petko Manolov
2021-12-07 12:44   ` Sakari Ailus
2022-01-04 15:30     ` Petko Manolov
2022-01-12  9:00       ` Sakari Ailus
2022-01-23 14:39         ` Petko Manolov
2021-12-03 22:12 ` [RFC PATCH 2/5] adds ovm6211 entry to Kconfig Petko Manolov
2021-12-03 22:12 ` [RFC PATCH 3/5] adds ovm6211 entry to Makefile Petko Manolov
2021-12-03 22:12 ` [RFC PATCH 4/5] adds drivers/staging/media/i2c/Kconfig entry Petko Manolov
2021-12-03 22:12 ` [RFC PATCH 5/5] adds i2c/ explicitly to Makefile Petko Manolov
2021-12-04  1:21   ` kernel test robot [this message]
2021-12-06 22:56   ` kernel test robot
2021-12-06 22:56     ` kernel test robot

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=202112040918.4eYGwkXT-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.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 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.