This change removes niobe related dsp-devicetree files. As kernel devicetree is proprietary removing niobe devicetree from opensource. Change-Id: If7a080918924a99673b42532164742bfdf5c1d11 Signed-off-by: Abhinav Parihar <quic_parihar@quicinc.com>
24 lines
468 B
Makefile
24 lines
468 B
Makefile
ifeq ($(CONFIG_ARCH_PINEAPPLE), y)
|
|
ifeq ($(CONFIG_ARCH_QTI_VM), y)
|
|
dtbo-y += pineapple/pineapple-dsp-trustedvm.dtbo
|
|
else
|
|
dtbo-y += pineapple/pineapple-dsp.dtbo
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARCH_BLAIR), y)
|
|
dtbo-y += blair/blair-dsp.dtbo
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARCH_SUN), y)
|
|
ifeq ($(CONFIG_ARCH_QTI_VM), y)
|
|
dtbo-y += sun/sun-dsp-trustedvm.dtbo
|
|
else
|
|
dtbo-y += sun/sun-dsp.dtbo
|
|
endif
|
|
endif
|
|
|
|
always-y := $(dtb-y) $(dtbo-y)
|
|
subdir-y := $(dts-dirs)
|
|
clean-files := *.dtb *.dtbo
|