Re: [PATCH 2/3] Input: axp20x-pek - Respect userspace wakeup configuration

From: kbuild test robot
Date: Mon Jan 13 2020 - 23:54:43 EST


Hi Samuel,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on input/next]
[also build test WARNING on v5.5-rc6 next-20200110]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url: https://github.com/0day-ci/linux/commits/Samuel-Holland/Input-axp20x-pek-Remove-unique-wakeup-event-handling/20200113-112123
base: https://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git next
config: x86_64-randconfig-a001-20200112 (attached as .config)
compiler: gcc-5 (Ubuntu 5.5.0-12ubuntu1) 5.5.0 20171010
reproduce:
# save the attached .config to linux build tree
make ARCH=x86_64

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@xxxxxxxxx>

All warnings (new ones prefixed by >>):

>> drivers/input/misc/axp20x-pek.c:356:5: warning: "CONFIG_PM_SLEEP" is not defined [-Wundef]
#if CONFIG_PM_SLEEP
^
Cyclomatic Complexity 1 arch/x86/include/asm/bitops.h:ffs
Cyclomatic Complexity 1 include/linux/pm_wakeup.h:device_set_wakeup_capable
Cyclomatic Complexity 1 include/linux/pm_wakeup.h:device_set_wakeup_enable
Cyclomatic Complexity 1 include/linux/pm_wakeup.h:device_init_wakeup
Cyclomatic Complexity 1 include/linux/device.h:dev_get_drvdata
Cyclomatic Complexity 1 include/linux/device.h:dev_set_drvdata
Cyclomatic Complexity 1 include/linux/input.h:input_get_drvdata
Cyclomatic Complexity 1 include/linux/input.h:input_set_drvdata
Cyclomatic Complexity 1 include/linux/platform_device.h:platform_set_drvdata
Cyclomatic Complexity 1 drivers/input/misc/axp20x-pek.c:axp20x_pek_should_register_input
Cyclomatic Complexity 1 drivers/input/misc/axp20x-pek.c:axp20x_pek_driver_init
Cyclomatic Complexity 22 drivers/input/misc/axp20x-pek.c:axp20x_store_attr
Cyclomatic Complexity 1 drivers/input/misc/axp20x-pek.c:axp20x_store_attr_shutdown
Cyclomatic Complexity 1 drivers/input/misc/axp20x-pek.c:axp20x_store_attr_startup
Cyclomatic Complexity 8 drivers/input/misc/axp20x-pek.c:axp20x_show_attr
Cyclomatic Complexity 1 drivers/input/misc/axp20x-pek.c:axp20x_show_attr_shutdown
Cyclomatic Complexity 1 drivers/input/misc/axp20x-pek.c:axp20x_show_attr_startup
Cyclomatic Complexity 1 include/linux/device.h:devm_kzalloc
Cyclomatic Complexity 22 drivers/input/misc/axp20x-pek.c:axp20x_pek_probe_input_device
Cyclomatic Complexity 12 drivers/input/misc/axp20x-pek.c:axp20x_pek_probe
Cyclomatic Complexity 1 include/linux/input.h:input_report_key
Cyclomatic Complexity 1 include/linux/input.h:input_sync
Cyclomatic Complexity 7 drivers/input/misc/axp20x-pek.c:axp20x_pek_irq
Cyclomatic Complexity 1 drivers/input/misc/axp20x-pek.c:axp20x_pek_driver_exit

vim +/CONFIG_PM_SLEEP +356 drivers/input/misc/axp20x-pek.c

355
> 356 #if CONFIG_PM_SLEEP
357 static int axp20x_pek_suspend(struct device *dev)
358 {
359 struct axp20x_pek *axp20x_pek = dev_get_drvdata(dev);
360
361 /*
362 * Nested threaded interrupts are not automatically
363 * disabled, so we must do it explicitly.
364 */
365 if (device_may_wakeup(dev)) {
366 enable_irq_wake(axp20x_pek->irq_dbf);
367 enable_irq_wake(axp20x_pek->irq_dbr);
368 } else {
369 disable_irq(axp20x_pek->irq_dbf);
370 disable_irq(axp20x_pek->irq_dbr);
371 }
372
373 return 0;
374 }
375

---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/hyperkitty/list/kbuild-all@xxxxxxxxxxxx Intel Corporation

Attachment: .config.gz
Description: application/gzip