diff options
author | Alex Elder <elder@linaro.org> | 2020-03-05 22:28:29 -0600 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-03-08 22:07:10 -0700 |
commit | 08120d236c47dd2bdb6f7366782f4756dd7f417e (patch) | |
tree | 3d11f98591f0781de7596b51f747d078e3cde845 /drivers/net/ipa/Makefile | |
parent | 530f9216a9537b58cdc2f967b5cd78f5dafb34c4 (diff) | |
download | lwn-08120d236c47dd2bdb6f7366782f4756dd7f417e.tar.gz lwn-08120d236c47dd2bdb6f7366782f4756dd7f417e.zip |
soc: qcom: ipa: support build of IPA code
Add build and Kconfig support for the Qualcomm IPA driver.
Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ipa/Makefile')
-rw-r--r-- | drivers/net/ipa/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/net/ipa/Makefile b/drivers/net/ipa/Makefile new file mode 100644 index 000000000000..afe5df1e6eee --- /dev/null +++ b/drivers/net/ipa/Makefile @@ -0,0 +1,12 @@ +# Un-comment the next line if you want to validate configuration data +#ccflags-y += -DIPA_VALIDATE + +obj-$(CONFIG_QCOM_IPA) += ipa.o + +ipa-y := ipa_main.o ipa_clock.o ipa_reg.o ipa_mem.o \ + ipa_table.o ipa_interrupt.o gsi.o gsi_trans.o \ + ipa_gsi.o ipa_smp2p.o ipa_uc.o \ + ipa_endpoint.o ipa_cmd.o ipa_modem.o \ + ipa_qmi.o ipa_qmi_msg.o + +ipa-y += ipa_data-sdm845.o ipa_data-sc7180.o |