diff options
author | Kumar Gala <galak@codeaurora.org> | 2015-03-11 16:28:10 -0500 |
---|---|---|
committer | Kumar Gala <galak@codeaurora.org> | 2015-04-28 14:20:40 -0500 |
commit | b6a1dfbc7d57409accf213e78db7b059c206be9e (patch) | |
tree | dddf2ba29a86607a3c7712ce1288552a71d58f9c /drivers/firmware/Makefile | |
parent | 7ce75bb2c05ef6949ab0b93633e052f46855690d (diff) | |
download | blackbird-op-linux-b6a1dfbc7d57409accf213e78db7b059c206be9e.tar.gz blackbird-op-linux-b6a1dfbc7d57409accf213e78db7b059c206be9e.zip |
firmware: qcom: scm: Split out 32-bit specific SCM code
Split out the 32-bit SCM implementation into its own file to prep for
supporting a 64-bit/ARM64 implementation as well. We create a simple shim
to ensure both versions conform to the same interface.
Signed-off-by: Kumar Gala <galak@codeaurora.org>
Diffstat (limited to 'drivers/firmware/Makefile')
-rw-r--r-- | drivers/firmware/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/firmware/Makefile b/drivers/firmware/Makefile index 3fdd3912709a..3001f1ae1062 100644 --- a/drivers/firmware/Makefile +++ b/drivers/firmware/Makefile @@ -12,7 +12,8 @@ obj-$(CONFIG_ISCSI_IBFT_FIND) += iscsi_ibft_find.o obj-$(CONFIG_ISCSI_IBFT) += iscsi_ibft.o obj-$(CONFIG_FIRMWARE_MEMMAP) += memmap.o obj-$(CONFIG_QCOM_SCM) += qcom_scm.o -CFLAGS_qcom_scm.o :=$(call as-instr,.arch_extension sec,-DREQUIRES_SEC=1) +obj-$(CONFIG_QCOM_SCM) += qcom_scm-32.o +CFLAGS_qcom_scm-32.o :=$(call as-instr,.arch_extension sec,-DREQUIRES_SEC=1) obj-$(CONFIG_GOOGLE_FIRMWARE) += google/ obj-$(CONFIG_EFI) += efi/ |