Message ID | 20210225092943.657-1-angkery@163.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Input: i8042: Remove unneeded variable | expand |
Hi angkery,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on input/next]
[also build test ERROR on v5.11 next-20210225]
[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/angkery/Input-i8042-Remove-unneeded-variable/20210225-215352
base: https://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git next
config: i386-randconfig-r031-20210225 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce (this is a W=1 build):
# https://github.com/0day-ci/linux/commit/d3f5af97cbc5d1ff5f8a3e96e4d858335f910e78
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review angkery/Input-i8042-Remove-unneeded-variable/20210225-215352
git checkout d3f5af97cbc5d1ff5f8a3e96e4d858335f910e78
# save the attached .config to linux build tree
make W=1 ARCH=i386
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
In file included from drivers/input/serio/i8042.h:23,
from drivers/input/serio/i8042.c:131:
drivers/input/serio/i8042-x86ia64io.h:591:14: warning: initialized field overwritten [-Woverride-init]
591 | .matches = {
| ^
drivers/input/serio/i8042-x86ia64io.h:591:14: note: (near initialization for 'i8042_dmi_noselftest_table[0].matches')
drivers/input/serio/i8042.c: In function 'i8042_panic_blink':
>> drivers/input/serio/i8042.c:1125:37: error: 'delay' undeclared (first use in this function); did you mean 'mdelay'?
1125 | #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0)
| ^~~~~
drivers/input/serio/i8042.c:1133:3: note: in expansion of macro 'DELAY'
1133 | DELAY;
| ^~~~~
drivers/input/serio/i8042.c:1125:37: note: each undeclared identifier is reported only once for each function it appears in
1125 | #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0)
| ^~~~~
drivers/input/serio/i8042.c:1133:3: note: in expansion of macro 'DELAY'
1133 | DELAY;
| ^~~~~
vim +1125 drivers/input/serio/i8042.c
^1da177e4c3f41 Linus Torvalds 2005-04-16 1113
^1da177e4c3f41 Linus Torvalds 2005-04-16 1114
^1da177e4c3f41 Linus Torvalds 2005-04-16 1115 /*
c7ff0d9c92435e TAMUKI Shoichi 2010-08-10 1116 * i8042_panic_blink() will turn the keyboard LEDs on or off and is called
c7ff0d9c92435e TAMUKI Shoichi 2010-08-10 1117 * when kernel panics. Flashing LEDs is useful for users running X who may
aa5e5dc2a8878e Michael Opdenacker 2013-09-18 1118 * not see the console and will help distinguishing panics from "real"
^1da177e4c3f41 Linus Torvalds 2005-04-16 1119 * lockups.
^1da177e4c3f41 Linus Torvalds 2005-04-16 1120 *
^1da177e4c3f41 Linus Torvalds 2005-04-16 1121 * Note that DELAY has a limit of 10ms so we will not get stuck here
^1da177e4c3f41 Linus Torvalds 2005-04-16 1122 * waiting for KBC to free up even if KBD interrupt is off
^1da177e4c3f41 Linus Torvalds 2005-04-16 1123 */
^1da177e4c3f41 Linus Torvalds 2005-04-16 1124
^1da177e4c3f41 Linus Torvalds 2005-04-16 @1125 #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0)
^1da177e4c3f41 Linus Torvalds 2005-04-16 1126
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
Hi angkery, Thank you for the patch! Yet something to improve: [auto build test ERROR on input/next] [also build test ERROR on v5.11 next-20210225] [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/angkery/Input-i8042-Remove-unneeded-variable/20210225-215352 base: https://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git next config: x86_64-randconfig-r034-20210225 (attached as .config) compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project a921aaf789912d981cbb2036bdc91ad7289e1523) 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 x86_64 cross compiling tool for clang build # apt-get install binutils-x86-64-linux-gnu # https://github.com/0day-ci/linux/commit/d3f5af97cbc5d1ff5f8a3e96e4d858335f910e78 git remote add linux-review https://github.com/0day-ci/linux git fetch --no-tags linux-review angkery/Input-i8042-Remove-unneeded-variable/20210225-215352 git checkout d3f5af97cbc5d1ff5f8a3e96e4d858335f910e78 # save the attached .config to linux build tree COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot <lkp@intel.com> All errors (new ones prefixed by >>): In file included from drivers/input/serio/i8042.c:131: In file included from drivers/input/serio/i8042.h:23: drivers/input/serio/i8042-x86ia64io.h:591:14: warning: initializer overrides prior initialization of this subobject [-Winitializer-overrides] .matches = { ^ drivers/input/serio/i8042-x86ia64io.h:587:14: note: previous initialization is here .matches = { ^ >> drivers/input/serio/i8042.c:1133:3: error: use of undeclared identifier 'delay' DELAY; ^ drivers/input/serio/i8042.c:1125:37: note: expanded from macro 'DELAY' #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0) ^ >> drivers/input/serio/i8042.c:1133:3: error: use of undeclared identifier 'delay' drivers/input/serio/i8042.c:1125:56: note: expanded from macro 'DELAY' #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0) ^ drivers/input/serio/i8042.c:1137:2: error: use of undeclared identifier 'delay' DELAY; ^ drivers/input/serio/i8042.c:1125:37: note: expanded from macro 'DELAY' #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0) ^ drivers/input/serio/i8042.c:1137:2: error: use of undeclared identifier 'delay' drivers/input/serio/i8042.c:1125:56: note: expanded from macro 'DELAY' #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0) ^ drivers/input/serio/i8042.c:1139:3: error: use of undeclared identifier 'delay' DELAY; ^ drivers/input/serio/i8042.c:1125:37: note: expanded from macro 'DELAY' #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0) ^ drivers/input/serio/i8042.c:1139:3: error: use of undeclared identifier 'delay' drivers/input/serio/i8042.c:1125:56: note: expanded from macro 'DELAY' #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0) ^ drivers/input/serio/i8042.c:1140:2: error: use of undeclared identifier 'delay' DELAY; ^ drivers/input/serio/i8042.c:1125:37: note: expanded from macro 'DELAY' #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0) ^ drivers/input/serio/i8042.c:1140:2: error: use of undeclared identifier 'delay' drivers/input/serio/i8042.c:1125:56: note: expanded from macro 'DELAY' #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0) ^ drivers/input/serio/i8042.c:1143:2: error: use of undeclared identifier 'delay' DELAY; ^ drivers/input/serio/i8042.c:1125:37: note: expanded from macro 'DELAY' #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0) ^ drivers/input/serio/i8042.c:1143:2: error: use of undeclared identifier 'delay' drivers/input/serio/i8042.c:1125:56: note: expanded from macro 'DELAY' #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0) ^ 1 warning and 10 errors generated. vim +/delay +1133 drivers/input/serio/i8042.c ^1da177e4c3f41 Linus Torvalds 2005-04-16 1126 c7ff0d9c92435e TAMUKI Shoichi 2010-08-10 1127 static long i8042_panic_blink(int state) ^1da177e4c3f41 Linus Torvalds 2005-04-16 1128 { c7ff0d9c92435e TAMUKI Shoichi 2010-08-10 1129 char led; ^1da177e4c3f41 Linus Torvalds 2005-04-16 1130 c7ff0d9c92435e TAMUKI Shoichi 2010-08-10 1131 led = (state) ? 0x01 | 0x04 : 0; ^1da177e4c3f41 Linus Torvalds 2005-04-16 1132 while (i8042_read_status() & I8042_STR_IBF) ^1da177e4c3f41 Linus Torvalds 2005-04-16 @1133 DELAY; 4eb3c30b2e034b Joe Perches 2010-11-29 1134 dbg("%02x -> i8042 (panic blink)\n", 0xed); 19f3c3e37314a2 Dmitry Torokhov 2007-01-18 1135 i8042_suppress_kbd_ack = 2; ^1da177e4c3f41 Linus Torvalds 2005-04-16 1136 i8042_write_data(0xed); /* set leds */ ^1da177e4c3f41 Linus Torvalds 2005-04-16 1137 DELAY; ^1da177e4c3f41 Linus Torvalds 2005-04-16 1138 while (i8042_read_status() & I8042_STR_IBF) ^1da177e4c3f41 Linus Torvalds 2005-04-16 1139 DELAY; ^1da177e4c3f41 Linus Torvalds 2005-04-16 1140 DELAY; 4eb3c30b2e034b Joe Perches 2010-11-29 1141 dbg("%02x -> i8042 (panic blink)\n", led); ^1da177e4c3f41 Linus Torvalds 2005-04-16 1142 i8042_write_data(led); ^1da177e4c3f41 Linus Torvalds 2005-04-16 1143 DELAY; d3f5af97cbc5d1 Junlin Yang 2021-02-25 1144 return 0; ^1da177e4c3f41 Linus Torvalds 2005-04-16 1145 } ^1da177e4c3f41 Linus Torvalds 2005-04-16 1146 --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
diff --git a/drivers/input/serio/i8042.c b/drivers/input/serio/i8042.c index abae23a..145bda1 100644 --- a/drivers/input/serio/i8042.c +++ b/drivers/input/serio/i8042.c @@ -1126,7 +1126,6 @@ static void i8042_controller_reset(bool s2r_wants_reset) static long i8042_panic_blink(int state) { - long delay = 0; char led; led = (state) ? 0x01 | 0x04 : 0; @@ -1142,7 +1141,7 @@ static long i8042_panic_blink(int state) dbg("%02x -> i8042 (panic blink)\n", led); i8042_write_data(led); DELAY; - return delay; + return 0; } #undef DELAY