aca951a22a
This patch aggregates all modifications in the -mm tree and adds complete ringtone support. The following features are supported: - keyboard full support - LCD full support - LED full support - dialtone full support - ringtone full support - audio playback via generic usb audio diver - audio record via generic usb audio diver For driver documentation see: Documentation/input/yealink.txt For vendor documentation see: http://yealink.com Signed-off-by: Henk <Henk.Vergonet@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
#
|
|
# Makefile for the USB input drivers
|
|
#
|
|
|
|
# Multipart objects.
|
|
usbhid-objs := hid-core.o
|
|
|
|
# Optional parts of multipart objects.
|
|
|
|
ifeq ($(CONFIG_USB_HIDDEV),y)
|
|
usbhid-objs += hiddev.o
|
|
endif
|
|
ifeq ($(CONFIG_USB_HIDINPUT),y)
|
|
usbhid-objs += hid-input.o
|
|
endif
|
|
ifeq ($(CONFIG_HID_PID),y)
|
|
usbhid-objs += pid.o
|
|
endif
|
|
ifeq ($(CONFIG_LOGITECH_FF),y)
|
|
usbhid-objs += hid-lgff.o
|
|
endif
|
|
ifeq ($(CONFIG_THRUSTMASTER_FF),y)
|
|
usbhid-objs += hid-tmff.o
|
|
endif
|
|
ifeq ($(CONFIG_HID_FF),y)
|
|
usbhid-objs += hid-ff.o
|
|
endif
|
|
|
|
obj-$(CONFIG_USB_AIPTEK) += aiptek.o
|
|
obj-$(CONFIG_USB_ATI_REMOTE) += ati_remote.o
|
|
obj-$(CONFIG_USB_HID) += usbhid.o
|
|
obj-$(CONFIG_USB_KBD) += usbkbd.o
|
|
obj-$(CONFIG_USB_KBTAB) += kbtab.o
|
|
obj-$(CONFIG_USB_KEYSPAN_REMOTE) += keyspan_remote.o
|
|
obj-$(CONFIG_USB_MOUSE) += usbmouse.o
|
|
obj-$(CONFIG_USB_MTOUCH) += mtouchusb.o
|
|
obj-$(CONFIG_USB_ITMTOUCH) += itmtouch.o
|
|
obj-$(CONFIG_USB_EGALAX) += touchkitusb.o
|
|
obj-$(CONFIG_USB_POWERMATE) += powermate.o
|
|
obj-$(CONFIG_USB_WACOM) += wacom.o
|
|
obj-$(CONFIG_USB_ACECAD) += acecad.o
|
|
obj-$(CONFIG_USB_YEALINK) += yealink.o
|
|
obj-$(CONFIG_USB_XPAD) += xpad.o
|