public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] soc: qcom: pmic_glink: add CONFIG_NET/CONFIG_OF dependencies
@ 2023-02-06 19:37 Arnd Bergmann
  2023-02-06 20:17 ` Konrad Dybcio
  2023-02-06 22:30 ` Bjorn Andersson
  0 siblings, 2 replies; 3+ messages in thread
From: Arnd Bergmann @ 2023-02-06 19:37 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Neil Armstrong
  Cc: Arnd Bergmann, Konrad Dybcio, Krzysztof Kozlowski,
	Manivannan Sadhasivam, AngeloGioacchino Del Regno,
	Souradeep Chowdhury, YueHaibing, linux-arm-msm, linux-kernel

From: Arnd Bergmann <arnd@arndb.de>

QMI is a network protocol, so anything using requires CONFIG_NET
to be enabled as well:

WARNING: unmet direct dependencies detected for QCOM_QMI_HELPERS
  Depends on [n]: NET [=n]
  Selected by [m]:
  - QCOM_PDR_HELPERS [=m]
arm-linux-gnueabi-ld: drivers/soc/qcom/qmi_interface.o: in function `qmi_send_new_lookup':
qmi_interface.c:(.text+0xf0): undefined reference to `kernel_sendmsg'

Add the dependency to both QCOM_PDR_HELPERS and QCOM_PMIC_GLINK to make
it clearly what the dependency is when another PDR user is added.

pmic_glink also needs CONFIG_OF:

drivers/soc/qcom/pmic_glink_altmode.c: In function 'pmic_glink_altmode_probe':
drivers/soc/qcom/pmic_glink_altmode.c:418:33: error: 'struct drm_bridge' has no member named 'of_node'

Fixes: 58ef4ece1e41 ("soc: qcom: pmic_glink: Introduce base PMIC GLINK driver")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/soc/qcom/Kconfig | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/soc/qcom/Kconfig b/drivers/soc/qcom/Kconfig
index 348fde2a8aae..a8f283086a21 100644
--- a/drivers/soc/qcom/Kconfig
+++ b/drivers/soc/qcom/Kconfig
@@ -91,12 +91,15 @@ config QCOM_OCMEM
 config QCOM_PDR_HELPERS
 	tristate
 	select QCOM_QMI_HELPERS
+	depends on NET
 
 config QCOM_PMIC_GLINK
 	tristate "Qualcomm PMIC GLINK driver"
 	depends on RPMSG
 	depends on TYPEC
 	depends on DRM
+	depends on NET
+	depends on OF
 	select AUXILIARY_BUS
 	select QCOM_PDR_HELPERS
 	help
-- 
2.39.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] soc: qcom: pmic_glink: add CONFIG_NET/CONFIG_OF dependencies
  2023-02-06 19:37 [PATCH] soc: qcom: pmic_glink: add CONFIG_NET/CONFIG_OF dependencies Arnd Bergmann
@ 2023-02-06 20:17 ` Konrad Dybcio
  2023-02-06 22:30 ` Bjorn Andersson
  1 sibling, 0 replies; 3+ messages in thread
From: Konrad Dybcio @ 2023-02-06 20:17 UTC (permalink / raw)
  To: Arnd Bergmann, Andy Gross, Bjorn Andersson, Neil Armstrong
  Cc: Arnd Bergmann, Krzysztof Kozlowski, Manivannan Sadhasivam,
	AngeloGioacchino Del Regno, Souradeep Chowdhury, YueHaibing,
	linux-arm-msm, linux-kernel



On 6.02.2023 20:37, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> QMI is a network protocol, so anything using requires CONFIG_NET
> to be enabled as well:
> 
> WARNING: unmet direct dependencies detected for QCOM_QMI_HELPERS
>   Depends on [n]: NET [=n]
>   Selected by [m]:
>   - QCOM_PDR_HELPERS [=m]
> arm-linux-gnueabi-ld: drivers/soc/qcom/qmi_interface.o: in function `qmi_send_new_lookup':
> qmi_interface.c:(.text+0xf0): undefined reference to `kernel_sendmsg'
> 
> Add the dependency to both QCOM_PDR_HELPERS and QCOM_PMIC_GLINK to make
> it clearly what the dependency is when another PDR user is added.
> 
> pmic_glink also needs CONFIG_OF:
> 
> drivers/soc/qcom/pmic_glink_altmode.c: In function 'pmic_glink_altmode_probe':
> drivers/soc/qcom/pmic_glink_altmode.c:418:33: error: 'struct drm_bridge' has no member named 'of_node'
> 
> Fixes: 58ef4ece1e41 ("soc: qcom: pmic_glink: Introduce base PMIC GLINK driver")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Missing sender s-o-b, but I think it's widely known that you're
the same Arnd.. :D

> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad
>  drivers/soc/qcom/Kconfig | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/soc/qcom/Kconfig b/drivers/soc/qcom/Kconfig
> index 348fde2a8aae..a8f283086a21 100644
> --- a/drivers/soc/qcom/Kconfig
> +++ b/drivers/soc/qcom/Kconfig
> @@ -91,12 +91,15 @@ config QCOM_OCMEM
>  config QCOM_PDR_HELPERS
>  	tristate
>  	select QCOM_QMI_HELPERS
> +	depends on NET
>  
>  config QCOM_PMIC_GLINK
>  	tristate "Qualcomm PMIC GLINK driver"
>  	depends on RPMSG
>  	depends on TYPEC
>  	depends on DRM
> +	depends on NET
> +	depends on OF
>  	select AUXILIARY_BUS
>  	select QCOM_PDR_HELPERS
>  	help

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] soc: qcom: pmic_glink: add CONFIG_NET/CONFIG_OF dependencies
  2023-02-06 19:37 [PATCH] soc: qcom: pmic_glink: add CONFIG_NET/CONFIG_OF dependencies Arnd Bergmann
  2023-02-06 20:17 ` Konrad Dybcio
@ 2023-02-06 22:30 ` Bjorn Andersson
  1 sibling, 0 replies; 3+ messages in thread
From: Bjorn Andersson @ 2023-02-06 22:30 UTC (permalink / raw)
  To: Andy Gross, Arnd Bergmann, Neil Armstrong
  Cc: Souradeep Chowdhury, Arnd Bergmann, Krzysztof Kozlowski,
	YueHaibing, Konrad Dybcio, linux-arm-msm, linux-kernel,
	AngeloGioacchino Del Regno, Manivannan Sadhasivam

On Mon, 6 Feb 2023 20:37:58 +0100, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> QMI is a network protocol, so anything using requires CONFIG_NET
> to be enabled as well:
> 
> WARNING: unmet direct dependencies detected for QCOM_QMI_HELPERS
>   Depends on [n]: NET [=n]
>   Selected by [m]:
>   - QCOM_PDR_HELPERS [=m]
> arm-linux-gnueabi-ld: drivers/soc/qcom/qmi_interface.o: in function `qmi_send_new_lookup':
> qmi_interface.c:(.text+0xf0): undefined reference to `kernel_sendmsg'
> 
> [...]

Applied, thanks!

[1/1] soc: qcom: pmic_glink: add CONFIG_NET/CONFIG_OF dependencies
      commit: 9049453a56300b04164c78a8ae3fbd5c225483bc

Best regards,
-- 
Bjorn Andersson <andersson@kernel.org>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-02-06 22:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-06 19:37 [PATCH] soc: qcom: pmic_glink: add CONFIG_NET/CONFIG_OF dependencies Arnd Bergmann
2023-02-06 20:17 ` Konrad Dybcio
2023-02-06 22:30 ` Bjorn Andersson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox