Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v5.5-rc3 23 lines 568 B view raw
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