summaryrefslogtreecommitdiffstats
path: root/drivers/soc
diff options
context:
space:
mode:
authorMurali Karicheri2015-01-29 22:23:51 +0100
committerSantosh Shilimkar2015-01-29 22:23:51 +0100
commitdf351f1efeb386481c1f61aa94cbe8a3a7c0c1d0 (patch)
tree47997c7ddbb1852dfb4605f9fadaee74a44eae2e /drivers/soc
parentsoc: ti: knav_qmss_queue: export API calls for use by user driver (diff)
downloadkernel-qcow2-linux-df351f1efeb386481c1f61aa94cbe8a3a7c0c1d0.tar.gz
kernel-qcow2-linux-df351f1efeb386481c1f61aa94cbe8a3a7c0c1d0.tar.xz
kernel-qcow2-linux-df351f1efeb386481c1f61aa94cbe8a3a7c0c1d0.zip
soc: ti: knav_qmss_queue: makefile tweak to build as dynamic module
Currently configuring qmss and dma as dynamic module creates three .ko files. knav_qmss_acc.ko and knav_qmss_queue.ko both can't be insmod because of circular dependency. So combine these two into one module by changing the makefile. Signed-off-by: Murali Karicheri <m-karicheri2@ti.com> Signed-off-by: Santosh Shilimkar <ssantosh@kernel.org>
Diffstat (limited to 'drivers/soc')
-rw-r--r--drivers/soc/ti/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/soc/ti/Makefile b/drivers/soc/ti/Makefile
index 6bed611e1934..135bdad7a6de 100644
--- a/drivers/soc/ti/Makefile
+++ b/drivers/soc/ti/Makefile
@@ -1,5 +1,6 @@
#
# TI Keystone SOC drivers
#
-obj-$(CONFIG_KEYSTONE_NAVIGATOR_QMSS) += knav_qmss_queue.o knav_qmss_acc.o
+obj-$(CONFIG_KEYSTONE_NAVIGATOR_QMSS) += knav_qmss.o
+knav_qmss-y := knav_qmss_queue.o knav_qmss_acc.o
obj-$(CONFIG_KEYSTONE_NAVIGATOR_DMA) += knav_dma.o