mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 00:52:01 +00:00
89e590535f
This patch adds APIs and relevant stream data structures for initialization and release of stream. Signed-off-by: Hardik T Shah <hardik.t.shah@intel.com> Signed-off-by: Sanyog Kale <sanyog.r.kale@intel.com> Signed-off-by: Shreyas NC <shreyas.nc@intel.com> Signed-off-by: Vinod Koul <vkoul@kernel.org>
19 lines
471 B
Makefile
19 lines
471 B
Makefile
#
|
|
# Makefile for soundwire core
|
|
#
|
|
|
|
#Bus Objs
|
|
soundwire-bus-objs := bus_type.o bus.o slave.o mipi_disco.o stream.o
|
|
obj-$(CONFIG_SOUNDWIRE_BUS) += soundwire-bus.o
|
|
|
|
#Cadence Objs
|
|
soundwire-cadence-objs := cadence_master.o
|
|
obj-$(CONFIG_SOUNDWIRE_CADENCE) += soundwire-cadence.o
|
|
|
|
#Intel driver
|
|
soundwire-intel-objs := intel.o
|
|
obj-$(CONFIG_SOUNDWIRE_INTEL) += soundwire-intel.o
|
|
|
|
soundwire-intel-init-objs := intel_init.o
|
|
obj-$(CONFIG_SOUNDWIRE_INTEL) += soundwire-intel-init.o
|