Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1273966 > unrolled thread
| Started by | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| First post | 2015-11-20 11:40 +0100 |
| Last post | 2015-11-20 14:30 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH v2] soc: qcom: enable smsm/smp2p modular build Arnd Bergmann <arnd@arndb.de> - 2015-11-20 11:40 +0100
Re: [PATCH v2] soc: qcom: enable smsm/smp2p modular build Andy Gross <agross@codeaurora.org> - 2015-11-20 14:30 +0100
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2015-11-20 11:40 +0100 |
| Subject | [PATCH v2] soc: qcom: enable smsm/smp2p modular build |
| Message-ID | <qwRgK-60g-31@gated-at.bofh.it> |
The newly added smp2p and smsm drivers cannot be loadable modules
but depend on smem, which can be, and that causes a link error:
drivers/built-in.o: In function `qcom_smp2p_intr':
:(.text+0xa6e68): undefined reference to `qcom_smem_get'
drivers/built-in.o: In function `qcom_smp2p_probe':
:(.text+0xa7320): undefined reference to `qcom_smem_alloc'
:(.text+0xa736c): undefined reference to `qcom_smem_get'
drivers/built-in.o: In function `qcom_smsm_probe':
:(.text+0xa7b34): undefined reference to `qcom_smem_get'
This marks all the drivers as 'tristate' to make the Kconfig
dependency resolution work properly.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: dbb04bd7122f ("soc: qcom: smp2p: Qualcomm Shared Memory Point to Point")
Fixes: d7387fc6add4 ("soc: qcom: smsm: Add driver for Qualcomm SMSM")
---
v2: fixed subject line
diff --git a/drivers/soc/qcom/Kconfig b/drivers/soc/qcom/Kconfig
index b57be7ab50b6..57b7145358e7 100644
--- a/drivers/soc/qcom/Kconfig
+++ b/drivers/soc/qcom/Kconfig
@@ -54,7 +54,7 @@ config QCOM_SMEM_STATE
bool
config QCOM_SMP2P
- bool "Qualcomm Shared Memory Point to Point support"
+ tristate "Qualcomm Shared Memory Point to Point support"
depends on QCOM_SMEM
select QCOM_SMEM_STATE
help
@@ -62,7 +62,7 @@ config QCOM_SMP2P
protocol.
config QCOM_SMSM
- bool "Qualcomm Shared Memory State Machine"
+ tristate "Qualcomm Shared Memory State Machine"
depends on QCOM_SMEM
select QCOM_SMEM_STATE
help
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Andy Gross <agross@codeaurora.org> |
|---|---|
| Date | 2015-11-20 14:30 +0100 |
| Message-ID | <qwTVg-7K7-3@gated-at.bofh.it> |
| In reply to | #1273966 |
On Fri, Nov 20, 2015 at 11:32:21AM +0100, Arnd Bergmann wrote: > The newly added smp2p and smsm drivers cannot be loadable modules > but depend on smem, which can be, and that causes a link error: > > drivers/built-in.o: In function `qcom_smp2p_intr': > :(.text+0xa6e68): undefined reference to `qcom_smem_get' > drivers/built-in.o: In function `qcom_smp2p_probe': > :(.text+0xa7320): undefined reference to `qcom_smem_alloc' > :(.text+0xa736c): undefined reference to `qcom_smem_get' > drivers/built-in.o: In function `qcom_smsm_probe': > :(.text+0xa7b34): undefined reference to `qcom_smem_get' > > This marks all the drivers as 'tristate' to make the Kconfig > dependency resolution work properly. Nice catch. I'll add this on top of those. -- Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, a Linux Foundation Collaborative Project -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web