CC: [email protected] BCC: [email protected] CC: [email protected] TO: Benjamin Tissoires <[email protected]> CC: Jiri Kosina <[email protected]> CC: Ping Cheng <[email protected]>
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: be2d3ecedd9911fbfd7e55cc9ceac5f8b79ae4cf commit: 22f4b026c3ddd4b26c5baa202bd3ee38feaa2e9a HID: compute an ordered list of input fields to process date: 5 weeks ago :::::: branch date: 23 hours ago :::::: commit date: 5 weeks ago compiler: ia64-linux-gcc (GCC) 11.2.0 If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot <[email protected]> cppcheck possible warnings: (new ones prefixed by >>, may not real problems) >> drivers/hid/hid-quirks.c:1145:39: warning: Uninitialized variable: >> q->hid_bl_item [uninitvar] if (bus == HID_BUS_ANY || bus == q->hid_bl_item.bus) { ^ -- >> drivers/hid/hid-input.c:1496:2: warning: There is an unknown macro here >> somewhere. Configuration is required. If list_for_each_entry is a macro then >> please configure it. [unknownMacro] list_for_each_entry(hidinput, &hid->inputs, list) ^ -- >> drivers/hid/hid-core.c:1767:2: warning: There is an unknown macro here >> somewhere. Configuration is required. If list_for_each_entry is a macro then >> please configure it. [unknownMacro] list_for_each_entry(report, &report_enum->report_list, list) ^ vim +1767 drivers/hid/hid-core.c 22f4b026c3ddd4 Benjamin Tissoires 2022-02-03 1761 22f4b026c3ddd4 Benjamin Tissoires 2022-02-03 1762 static void hid_process_ordering(struct hid_device *hid) 22f4b026c3ddd4 Benjamin Tissoires 2022-02-03 1763 { 22f4b026c3ddd4 Benjamin Tissoires 2022-02-03 1764 struct hid_report *report; 22f4b026c3ddd4 Benjamin Tissoires 2022-02-03 1765 struct hid_report_enum *report_enum = &hid->report_enum[HID_INPUT_REPORT]; 22f4b026c3ddd4 Benjamin Tissoires 2022-02-03 1766 22f4b026c3ddd4 Benjamin Tissoires 2022-02-03 @1767 list_for_each_entry(report, &report_enum->report_list, list) 22f4b026c3ddd4 Benjamin Tissoires 2022-02-03 1768 hid_report_process_ordering(hid, report); 22f4b026c3ddd4 Benjamin Tissoires 2022-02-03 1769 } 22f4b026c3ddd4 Benjamin Tissoires 2022-02-03 1770 -- 0-DAY CI Kernel Test Service https://01.org/lkp _______________________________________________ kbuild mailing list -- [email protected] To unsubscribe send an email to [email protected]
