Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid

Pull HID fix from Jiri Kosina:
"Regression fix for HID_RMI-driven synaptics touchpads in
!CONFIG_HID_RMI cases"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid:
HID: rmi: fallback to generic/multitouch if hid-rmi is not built

+2 -1
+2 -1
drivers/hid/hid-core.c
··· 827 827 * hid-rmi should take care of them, 828 828 * not hid-generic 829 829 */ 830 - hid->group = HID_GROUP_RMI; 830 + if (IS_ENABLED(CONFIG_HID_RMI)) 831 + hid->group = HID_GROUP_RMI; 831 832 break; 832 833 } 833 834