cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Makefile (770B)


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