Remove downstream slimbus driver and make the required upstream slimbus driver kconfig and makefile changes. Change-Id: I2ec2d53cc9242f41717d2ee8130b9fe7a55ae5de Signed-off-by: Prudhvi Yarlagadda <pyarlaga@codeaurora.org>
15 lines
368 B
Makefile
15 lines
368 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for kernel SLIMbus framework.
|
|
#
|
|
|
|
obj-$(CONFIG_SLIMBUS) += slimbus.o
|
|
slimbus-y := core.o messaging.o sched.o stream.o
|
|
|
|
#Controllers
|
|
obj-$(CONFIG_SLIM_QCOM_CTRL) += slim-qcom-ctrl.o
|
|
slim-qcom-ctrl-y := qcom-ctrl.o
|
|
|
|
obj-$(CONFIG_SLIM_QCOM_NGD_CTRL) += slim-qcom-ngd-ctrl.o
|
|
slim-qcom-ngd-ctrl-y := qcom-ngd-ctrl.o
|