Message ID | 1467729563-23318-28-git-send-email-benjamin.tissoires@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi, [auto build test ERROR on hid/for-next] [also build test ERROR on v4.7-rc6 next-20160705] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Benjamin-Tissoires/HID-wacom-cleanup-EKR-LED/20160705-225431 base: https://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git for-next config: i386-randconfig-a0-201627 (attached as .config) compiler: gcc-6 (Debian 6.1.1-1) 6.1.1 20160430 reproduce: # save the attached .config to linux build tree make ARCH=i386 All errors (new ones prefixed by >>): In file included from include/linux/kernel.h:13:0, from include/asm-generic/bug.h:13, from arch/x86/include/asm/bug.h:35, from include/linux/bug.h:4, from include/linux/mmdebug.h:4, from include/linux/gfp.h:4, from include/linux/slab.h:14, from include/linux/hid.h:30, from drivers/hid/wacom_wac.h:13, from drivers/hid/wacom_wac.c:15: drivers/hid/wacom_wac.c: In function 'wacom_update_led': >> drivers/hid/wacom_wac.c:2844:20: error: 'struct led_trigger' has no member named 'name' next_led->trigger.name, ^ include/linux/printk.h:264:33: note: in definition of macro 'pr_err' printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__) ^~~~~~~~~~~ vim +2844 drivers/hid/wacom_wac.c 2838 return; 2839 2840 pr_err("%s group: %d led: (%d -> %d) t: %s %s:%d\n", __func__, 2841 led->group, 2842 led->id, 2843 next_led->id, > 2844 next_led->trigger.name, 2845 __FILE__, __LINE__); 2846 2847 next_led->held = true; --- 0-DAY kernel test infrastructure Open Source Technology Center https://lists.01.org/pipermail/kbuild-all Intel Corporation
diff --git a/drivers/hid/wacom_wac.c b/drivers/hid/wacom_wac.c index a2b9c09..fcf2264 100644 --- a/drivers/hid/wacom_wac.c +++ b/drivers/hid/wacom_wac.c @@ -2764,6 +2764,31 @@ static void wacom_setup_numbered_buttons(struct input_dev *input_dev, __set_bit(BTN_BASE + (i-16), input_dev->keybit); } +static void wacom_24hd_update_leds(struct wacom *wacom, int mask, int group) +{ + struct wacom_led *led; + int i; + bool updated = false; + + if (group > 0) + mask >>= 8; + + for (i = 0; i < 3; i++) { + led = wacom_led_find(wacom, group, i); + if (!led) { + hid_err(wacom->hdev, "can't find LED %d in group %d\n", + i, group); + continue; + } + if (!updated && mask & BIT(i)) { + led->held = true; + led_trigger_event(&led->trigger, LED_FULL); + } else { + led->held = false; + } + } +} + static bool wacom_is_led_toggled(struct wacom *wacom, int button_count, int mask, int group) { @@ -2781,7 +2806,11 @@ static void wacom_update_led(struct wacom *wacom, int button_count, int mask, int cur; bool pressed; + if (wacom->wacom_wac.features.type == WACOM_24HD) + return wacom_24hd_update_leds(wacom, mask, group); + pressed = wacom_is_led_toggled(wacom, button_count, mask, group); + cur = wacom->led.groups[group].select; led = wacom_led_find(wacom, group, cur); @@ -2808,6 +2837,13 @@ static void wacom_update_led(struct wacom *wacom, int button_count, int mask, if (next_led == led) return; + pr_err("%s group: %d led: (%d -> %d) t: %s %s:%d\n", __func__, + led->group, + led->id, + next_led->id, + next_led->trigger.name, + __FILE__, __LINE__); + next_led->held = true; led_trigger_event(&next_led->trigger, wacom_leds_brightness_get(next_led));
The 24HD has 1 button per LED (first three buttons of each group). We need a special treatment for them as it's not a uniq button that switches between the LEDs. Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> --- drivers/hid/wacom_wac.c | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+)