brintos

brintos / linux-shallow public Read only

0
0
Text · 1013 B · e80a2c2 Raw
39 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Makefile for soundwire core4#5 6#Bus Objs7soundwire-bus-y := bus_type.o bus.o master.o slave.o mipi_disco.o stream.o  \8			sysfs_slave.o sysfs_slave_dpn.o9obj-$(CONFIG_SOUNDWIRE) += soundwire-bus.o10 11soundwire-generic-allocation-objs := generic_bandwidth_allocation.o12obj-$(CONFIG_SOUNDWIRE_GENERIC_ALLOCATION) += soundwire-generic-allocation.o13 14ifdef CONFIG_DEBUG_FS15soundwire-bus-y += debugfs.o16endif17 18ifdef CONFIG_IRQ_DOMAIN19soundwire-bus-y += irq.o20endif21 22#AMD driver23soundwire-amd-y := amd_init.o amd_manager.o24obj-$(CONFIG_SOUNDWIRE_AMD) += soundwire-amd.o25 26#Cadence Objs27soundwire-cadence-y := cadence_master.o28obj-$(CONFIG_SOUNDWIRE_CADENCE) += soundwire-cadence.o29 30#Intel driver31soundwire-intel-y :=	intel.o intel_ace2x.o intel_ace2x_debugfs.o \32			intel_auxdevice.o intel_init.o dmi-quirks.o \33			intel_bus_common.o34obj-$(CONFIG_SOUNDWIRE_INTEL) += soundwire-intel.o35 36#Qualcomm driver37soundwire-qcom-y :=	qcom.o38obj-$(CONFIG_SOUNDWIRE_QCOM) += soundwire-qcom.o39