mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-26 05:34:13 +08:00
35a927f284
Add support for the legacy keyboard (KBD/TC=0x08) HID transport layer of the Surface System Aggregator Module (SSAM) to the Surface HID driver. On Surface Laptops 1 and 2, this interface is used to connect the integrated keyboard. Note that this subsystem interface essentially provides a limited HID transport layer. In contrast to the generic HID interface (TC=0x15) used on newer Surface models, this interface only allows (as far as we know) for a single device to be connected and is otherwise severely limited in terms of support for feature- and output-reports. Specifically, only caps-lock-LED output-reports and a single read-only feature-report are supported. Signed-off-by: Maximilian Luz <luzmaximilian@gmail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
8 lines
254 B
Makefile
8 lines
254 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Makefile - Surface System Aggregator Module (SSAM) HID transport driver.
|
|
#
|
|
obj-$(CONFIG_SURFACE_HID_CORE) += surface_hid_core.o
|
|
obj-$(CONFIG_SURFACE_HID) += surface_hid.o
|
|
obj-$(CONFIG_SURFACE_KBD) += surface_kbd.o
|