~hui.wang/alsa-driver/dkms-packaging.audiosdw-ppa

« back to all changes in this revision

Viewing changes to buildroot/src/oem-audiosdw-lp1836324-0.6ubuntu1.2/soundwire/Makefile

  • Committer: Hui Wang
  • Date: 2019-12-13 02:41:40 UTC
  • Revision ID: hui.wang@canonical.com-20191213024140-1cprdcbl3122fn85
insert pc-oem-dkms

Show diffs side-by-side

added added

removed removed

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