[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <202211021125.v5ms1oMs-lkp@intel.com>
Date: Wed, 2 Nov 2022 11:27:07 +0800
From: kernel test robot <lkp@...el.com>
To: Osama Muhammad <osmtendev@...il.com>, gregkh@...uxfoundation.org
Cc: oe-kbuild-all@...ts.linux.dev, linux-kernel@...r.kernel.org,
Osama Muhammad <osmtendev@...il.com>,
Samuel Thibault <samuel.thibault@...-lyon.org>
Subject: Re: [PATCH] Accessiblity: speakup_dtlk: specifying the default
driver parameters among the module params
Hi Osama,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on linus/master]
[also build test ERROR on v6.1-rc3 next-20221101]
[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#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Osama-Muhammad/Accessiblity-speakup_dtlk-specifying-the-default-driver-parameters-among-the-module-params/20221102-050055
patch link: https://lore.kernel.org/r/20221101205912.10139-1-osmtendev%40gmail.com
patch subject: [PATCH] Accessiblity: speakup_dtlk: specifying the default driver parameters among the module params
config: parisc-randconfig-r022-20221101
compiler: hppa-linux-gcc (GCC) 12.1.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/intel-lab-lkp/linux/commit/faea81a453174d64d377b24736315f81c2137565
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Osama-Muhammad/Accessiblity-speakup_dtlk-specifying-the-default-driver-parameters-among-the-module-params/20221102-050055
git checkout faea81a453174d64d377b24736315f81c2137565
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=parisc SHELL=/bin/bash drivers/accessibility/speakup/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@...el.com>
All errors (new ones prefixed by >>):
>> drivers/accessibility/speakup/speakup_dtlk.c:51:10: error: array index in initializer exceeds array bounds
51 | [CAPS_START] = { CAPS_START, .u.s = {"\x01+35p" } },
| ^~~~~~~~~~
drivers/accessibility/speakup/speakup_dtlk.c:51:10: note: (near initialization for 'vars')
drivers/accessibility/speakup/speakup_dtlk.c:52:10: error: array index in initializer exceeds array bounds
52 | [CAPS_STOP] = { CAPS_STOP, .u.s = {"\x01-35p" } },
| ^~~~~~~~~
drivers/accessibility/speakup/speakup_dtlk.c:52:10: note: (near initialization for 'vars')
drivers/accessibility/speakup/speakup_dtlk.c:53:10: error: array index in initializer exceeds array bounds
53 | [RATE] = { RATE, .u.n = {"\x01%ds", 8, 0, 9, 0, 0, NULL } },
| ^~~~
drivers/accessibility/speakup/speakup_dtlk.c:53:10: note: (near initialization for 'vars')
drivers/accessibility/speakup/speakup_dtlk.c:54:10: error: array index in initializer exceeds array bounds
54 | [PITCH] = { PITCH, .u.n = {"\x01%dp", 50, 0, 99, 0, 0, NULL } },
| ^~~~~
drivers/accessibility/speakup/speakup_dtlk.c:54:10: note: (near initialization for 'vars')
drivers/accessibility/speakup/speakup_dtlk.c:55:10: error: array index in initializer exceeds array bounds
55 | [VOL] = { VOL, .u.n = {"\x01%dv", 5, 0, 9, 0, 0, NULL } },
| ^~~
drivers/accessibility/speakup/speakup_dtlk.c:55:10: note: (near initialization for 'vars')
drivers/accessibility/speakup/speakup_dtlk.c:56:10: error: array index in initializer exceeds array bounds
56 | [TONE] = { TONE, .u.n = {"\x01%dx", 1, 0, 2, 0, 0, NULL } },
| ^~~~
drivers/accessibility/speakup/speakup_dtlk.c:56:10: note: (near initialization for 'vars')
drivers/accessibility/speakup/speakup_dtlk.c:57:10: error: array index in initializer exceeds array bounds
57 | [PUNCT] = { PUNCT, .u.n = {"\x01%db", 7, 0, 15, 0, 0, NULL } },
| ^~~~~
drivers/accessibility/speakup/speakup_dtlk.c:57:10: note: (near initialization for 'vars')
drivers/accessibility/speakup/speakup_dtlk.c:58:10: error: array index in initializer exceeds array bounds
58 | [VOICE] = { VOICE, .u.n = {"\x01%do", 0, 0, 7, 0, 0, NULL } },
| ^~~~~
drivers/accessibility/speakup/speakup_dtlk.c:58:10: note: (near initialization for 'vars')
drivers/accessibility/speakup/speakup_dtlk.c:59:10: error: array index in initializer exceeds array bounds
59 | [FREQUENCY] = { FREQUENCY, .u.n = {"\x01%df", 5, 0, 9, 0, 0, NULL } },
| ^~~~~~~~~
drivers/accessibility/speakup/speakup_dtlk.c:59:10: note: (near initialization for 'vars')
drivers/accessibility/speakup/speakup_dtlk.c:60:10: error: array index in initializer exceeds array bounds
60 | [DIRECT] = { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
| ^~~~~~
drivers/accessibility/speakup/speakup_dtlk.c:60:10: note: (near initialization for 'vars')
vim +51 drivers/accessibility/speakup/speakup_dtlk.c
48
49
50 static struct var_t vars[NB_ID] = {
> 51 [CAPS_START] = { CAPS_START, .u.s = {"\x01+35p" } },
52 [CAPS_STOP] = { CAPS_STOP, .u.s = {"\x01-35p" } },
53 [RATE] = { RATE, .u.n = {"\x01%ds", 8, 0, 9, 0, 0, NULL } },
54 [PITCH] = { PITCH, .u.n = {"\x01%dp", 50, 0, 99, 0, 0, NULL } },
55 [VOL] = { VOL, .u.n = {"\x01%dv", 5, 0, 9, 0, 0, NULL } },
56 [TONE] = { TONE, .u.n = {"\x01%dx", 1, 0, 2, 0, 0, NULL } },
57 [PUNCT] = { PUNCT, .u.n = {"\x01%db", 7, 0, 15, 0, 0, NULL } },
58 [VOICE] = { VOICE, .u.n = {"\x01%do", 0, 0, 7, 0, 0, NULL } },
59 [FREQUENCY] = { FREQUENCY, .u.n = {"\x01%df", 5, 0, 9, 0, 0, NULL } },
60 [DIRECT] = { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
61 V_LAST_VAR
62 };
63
--
0-DAY CI Kernel Test Service
https://01.org/lkp
View attachment "config" of type "text/plain" (145240 bytes)
Powered by blists - more mailing lists