mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
This change adds snapshot of usb audio qmi service related files. Usb audio device enumeration remote entity communicates with usb audio qmi server to enable or disable particular audio stream on usb audio device. This offloads ISOC data transfer operations to remote entity and allows apps processor to go to power collapse more frequently for better power saving. This snapshot is taken as of msm-4.9 commit c9738304eb08 ("qseecom: block system signals when waiting for listener available"). This change also fixes reported minor errors related to coding style and kzalloc() usage. Change-Id: I8e002f1e1936a03b1a0c585a61d0340e4a00a192 Signed-off-by: Mayank Rana <mrana@codeaurora.org>
33 lines
741 B
Makefile
33 lines
741 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for ALSA
|
|
#
|
|
|
|
snd-usb-audio-objs := card.o \
|
|
clock.o \
|
|
endpoint.o \
|
|
format.o \
|
|
helper.o \
|
|
mixer.o \
|
|
mixer_quirks.o \
|
|
mixer_scarlett.o \
|
|
mixer_us16x08.o \
|
|
pcm.o \
|
|
proc.o \
|
|
quirks.o \
|
|
stream.o \
|
|
badd.o
|
|
|
|
snd-usbmidi-lib-objs := midi.o
|
|
|
|
# Toplevel Module Dependency
|
|
obj-$(CONFIG_SND_USB_AUDIO) += snd-usb-audio.o snd-usbmidi-lib.o
|
|
|
|
obj-$(CONFIG_SND_USB_UA101) += snd-usbmidi-lib.o
|
|
obj-$(CONFIG_SND_USB_USX2Y) += snd-usbmidi-lib.o
|
|
obj-$(CONFIG_SND_USB_US122L) += snd-usbmidi-lib.o
|
|
|
|
obj-$(CONFIG_SND) += misc/ usx2y/ caiaq/ 6fire/ hiface/ bcd2000/
|
|
obj-$(CONFIG_SND_USB_LINE6) += line6/
|
|
obj-$(CONFIG_SND_USB_AUDIO_QMI) += usb_audio_qmi_v01.o usb_audio_qmi_svc.o
|