1# SPDX-License-Identifier: GPL-2.0-only 2# 3# Makefile for soundwire core 4# 5 6#Bus Objs 7soundwire-bus-objs := bus_type.o bus.o slave.o mipi_disco.o stream.o 8obj-$(CONFIG_SOUNDWIRE) += soundwire-bus.o 9 10ifdef CONFIG_DEBUG_FS 11soundwire-bus-objs += debugfs.o 12endif 13 14#Cadence Objs 15soundwire-cadence-objs := cadence_master.o 16obj-$(CONFIG_SOUNDWIRE_CADENCE) += soundwire-cadence.o 17 18#Intel driver 19soundwire-intel-objs := intel.o 20obj-$(CONFIG_SOUNDWIRE_INTEL) += soundwire-intel.o 21 22soundwire-intel-init-objs := intel_init.o 23obj-$(CONFIG_SOUNDWIRE_INTEL) += soundwire-intel-init.o 24 25#Qualcomm driver 26soundwire-qcom-objs := qcom.o 27obj-$(CONFIG_SOUNDWIRE_QCOM) += soundwire-qcom.o 28