From: kernel test robot <lkp@intel.com>
To: Corentin Labbe <clabbe@baylibre.com>,
gregkh@linuxfoundation.org, mchehab@kernel.org
Cc: kbuild-all@lists.01.org, linux-kernel@vger.kernel.org,
linux-media@vger.kernel.org, linux-staging@lists.linux.dev,
mjpeg-users@lists.sourceforge.net,
Corentin Labbe <clabbe@baylibre.com>
Subject: Re: [PATCH 4/8] staging: media: zoran: add debugfs
Date: Sat, 4 Sep 2021 07:28:29 +0800 [thread overview]
Message-ID: <202109040717.tUOp8634-lkp@intel.com> (raw)
In-Reply-To: <20210903191540.3052775-5-clabbe@baylibre.com>
[-- Attachment #1: Type: text/plain, Size: 3389 bytes --]
Hi Corentin,
I love your patch! Perhaps something to improve:
[auto build test WARNING on staging/staging-testing]
url: https://github.com/0day-ci/linux/commits/Corentin-Labbe/staging-media-zoran-fusion-in-one-module/20210904-031844
base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 5d7d11dead3ea7191a8e8635fb718d0c3f203fe0
config: arc-allyesconfig (attached as .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/1e16912d8cd1602ddb54f3e43e17021b8daf4e58
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Corentin-Labbe/staging-media-zoran-fusion-in-one-module/20210904-031844
git checkout 1e16912d8cd1602ddb54f3e43e17021b8daf4e58
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross ARCH=arc
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/zoran/zoran_card.c: In function 'zoran_debugfs_show':
>> drivers/staging/media/zoran/zoran_card.c:1061:32: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'v4l2_std_id' {aka 'long long unsigned int'} [-Wformat=]
1061 | seq_printf(seq, "Norm %x\n", zr->norm);
| ~^ ~~~~~~~~
| | |
| | v4l2_std_id {aka long long unsigned int}
| unsigned int
| %llx
vim +1061 drivers/staging/media/zoran/zoran_card.c
1053
1054 #ifdef CONFIG_VIDEO_ZORAN_DEBUG
1055 static int zoran_debugfs_show(struct seq_file *seq, void *v)
1056 {
1057 struct zoran *zr = seq->private;
1058
1059 seq_printf(seq, "Running mode %x\n", zr->running);
1060 seq_printf(seq, "Codec mode %x\n", zr->codec_mode);
> 1061 seq_printf(seq, "Norm %x\n", zr->norm);
1062 seq_printf(seq, "Input %d\n", zr->input);
1063 seq_printf(seq, "Buffersize %d\n", zr->buffer_size);
1064
1065 seq_printf(seq, "V4L width %dx%d\n", zr->v4l_settings.width, zr->v4l_settings.height);
1066 seq_printf(seq, "V4L bytesperline %d\n", zr->v4l_settings.bytesperline);
1067
1068 seq_printf(seq, "JPG decimation %u\n", zr->jpg_settings.decimation);
1069 seq_printf(seq, "JPG hor_dcm %u\n", zr->jpg_settings.hor_dcm);
1070 seq_printf(seq, "JPG ver_dcm %u\n", zr->jpg_settings.ver_dcm);
1071 seq_printf(seq, "JPG tmp_dcm %u\n", zr->jpg_settings.tmp_dcm);
1072 seq_printf(seq, "JPG odd_even %u\n", zr->jpg_settings.odd_even);
1073 seq_printf(seq, "JPG crop %dx%d %d %d\n",
1074 zr->jpg_settings.img_x,
1075 zr->jpg_settings.img_y,
1076 zr->jpg_settings.img_width,
1077 zr->jpg_settings.img_height);
1078
1079 seq_printf(seq, "Prepared %u\n", zr->prepared);
1080 seq_printf(seq, "Queued %u\n", zr->queued);
1081 return 0;
1082 }
1083
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 68888 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH 4/8] staging: media: zoran: add debugfs
Date: Sat, 04 Sep 2021 07:28:29 +0800 [thread overview]
Message-ID: <202109040717.tUOp8634-lkp@intel.com> (raw)
In-Reply-To: <20210903191540.3052775-5-clabbe@baylibre.com>
[-- Attachment #1: Type: text/plain, Size: 3463 bytes --]
Hi Corentin,
I love your patch! Perhaps something to improve:
[auto build test WARNING on staging/staging-testing]
url: https://github.com/0day-ci/linux/commits/Corentin-Labbe/staging-media-zoran-fusion-in-one-module/20210904-031844
base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 5d7d11dead3ea7191a8e8635fb718d0c3f203fe0
config: arc-allyesconfig (attached as .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/1e16912d8cd1602ddb54f3e43e17021b8daf4e58
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Corentin-Labbe/staging-media-zoran-fusion-in-one-module/20210904-031844
git checkout 1e16912d8cd1602ddb54f3e43e17021b8daf4e58
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross ARCH=arc
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/zoran/zoran_card.c: In function 'zoran_debugfs_show':
>> drivers/staging/media/zoran/zoran_card.c:1061:32: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'v4l2_std_id' {aka 'long long unsigned int'} [-Wformat=]
1061 | seq_printf(seq, "Norm %x\n", zr->norm);
| ~^ ~~~~~~~~
| | |
| | v4l2_std_id {aka long long unsigned int}
| unsigned int
| %llx
vim +1061 drivers/staging/media/zoran/zoran_card.c
1053
1054 #ifdef CONFIG_VIDEO_ZORAN_DEBUG
1055 static int zoran_debugfs_show(struct seq_file *seq, void *v)
1056 {
1057 struct zoran *zr = seq->private;
1058
1059 seq_printf(seq, "Running mode %x\n", zr->running);
1060 seq_printf(seq, "Codec mode %x\n", zr->codec_mode);
> 1061 seq_printf(seq, "Norm %x\n", zr->norm);
1062 seq_printf(seq, "Input %d\n", zr->input);
1063 seq_printf(seq, "Buffersize %d\n", zr->buffer_size);
1064
1065 seq_printf(seq, "V4L width %dx%d\n", zr->v4l_settings.width, zr->v4l_settings.height);
1066 seq_printf(seq, "V4L bytesperline %d\n", zr->v4l_settings.bytesperline);
1067
1068 seq_printf(seq, "JPG decimation %u\n", zr->jpg_settings.decimation);
1069 seq_printf(seq, "JPG hor_dcm %u\n", zr->jpg_settings.hor_dcm);
1070 seq_printf(seq, "JPG ver_dcm %u\n", zr->jpg_settings.ver_dcm);
1071 seq_printf(seq, "JPG tmp_dcm %u\n", zr->jpg_settings.tmp_dcm);
1072 seq_printf(seq, "JPG odd_even %u\n", zr->jpg_settings.odd_even);
1073 seq_printf(seq, "JPG crop %dx%d %d %d\n",
1074 zr->jpg_settings.img_x,
1075 zr->jpg_settings.img_y,
1076 zr->jpg_settings.img_width,
1077 zr->jpg_settings.img_height);
1078
1079 seq_printf(seq, "Prepared %u\n", zr->prepared);
1080 seq_printf(seq, "Queued %u\n", zr->queued);
1081 return 0;
1082 }
1083
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 68888 bytes --]
next prev parent reply other threads:[~2021-09-03 23:28 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-03 19:15 [PATCH 0/8] staging: media: zoran: fusion in one module Corentin Labbe
2021-09-03 19:15 ` [PATCH 1/8] staging: media: zoran: move module parameter checks to zoran_probe Corentin Labbe
2021-09-03 19:15 ` [PATCH 2/8] staging: media: zoran: use module_pci_driver Corentin Labbe
2021-09-03 19:15 ` [PATCH 3/8] staging: media: zoran: rename debug module parameter Corentin Labbe
2021-09-03 19:15 ` [PATCH 4/8] staging: media: zoran: add debugfs Corentin Labbe
2021-09-03 23:28 ` kernel test robot [this message]
2021-09-03 23:28 ` kernel test robot
2021-09-04 5:53 ` Greg KH
2021-09-06 13:36 ` LABBE Corentin
2021-09-04 6:42 ` kernel test robot
2021-09-04 6:42 ` kernel test robot
2021-09-06 10:20 ` Hans Verkuil
2021-09-03 19:15 ` [PATCH 5/8] staging: media: zoran: videocode: remove procfs Corentin Labbe
2021-09-03 19:15 ` [PATCH 6/8] staging: media: zoran: fusion all modules Corentin Labbe
2021-09-06 10:41 ` Hans Verkuil
2021-09-06 13:40 ` LABBE Corentin
2021-09-03 19:15 ` [PATCH 7/8] staging: media: zoran: remove vidmem Corentin Labbe
2021-09-03 19:15 ` [PATCH 8/8] staging: media: zoran: move videodev alloc Corentin Labbe
2021-09-06 11:03 ` [PATCH 0/8] staging: media: zoran: fusion in one module Hans Verkuil
2021-09-06 13:49 ` LABBE Corentin
2021-09-06 14:11 ` Hans Verkuil
2021-09-06 14:56 ` LABBE Corentin
2021-09-06 15:06 ` 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=202109040717.tUOp8634-lkp@intel.com \
--to=lkp@intel.com \
--cc=clabbe@baylibre.com \
--cc=gregkh@linuxfoundation.org \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
--cc=mchehab@kernel.org \
--cc=mjpeg-users@lists.sourceforge.net \
/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.