All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/msm: fix compilation when COMMON_CLK is disabled
@ 2021-10-07  9:13 Christian König
  2021-10-07 14:57 ` Alex Deucher
  0 siblings, 1 reply; 2+ messages in thread
From: Christian König @ 2021-10-07  9:13 UTC (permalink / raw)
  To: rdunlap, sfr; +Cc: dri-devel, freedreno, robdclark

We can't even compile test without this

Fixes: b3ed524f84f5 ("drm/msm: allow compile_test on !ARM")
Signed-off-by: Christian König <christian.koenig@amd.com>
---
 drivers/gpu/drm/msm/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/msm/Kconfig b/drivers/gpu/drm/msm/Kconfig
index 5879f67bc88c..d9879b011fb0 100644
--- a/drivers/gpu/drm/msm/Kconfig
+++ b/drivers/gpu/drm/msm/Kconfig
@@ -5,7 +5,7 @@ config DRM_MSM
 	depends on DRM
 	depends on ARCH_QCOM || SOC_IMX5 || COMPILE_TEST
 	depends on IOMMU_SUPPORT
-	depends on (OF && COMMON_CLK) || COMPILE_TEST
+	depends on (OF || COMPILE_TEST) && COMMON_CLK
 	depends on QCOM_OCMEM || QCOM_OCMEM=n
 	depends on QCOM_LLCC || QCOM_LLCC=n
 	depends on QCOM_COMMAND_DB || QCOM_COMMAND_DB=n
-- 
2.25.1


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

* Re: [PATCH] drm/msm: fix compilation when COMMON_CLK is disabled
  2021-10-07  9:13 [PATCH] drm/msm: fix compilation when COMMON_CLK is disabled Christian König
@ 2021-10-07 14:57 ` Alex Deucher
  0 siblings, 0 replies; 2+ messages in thread
From: Alex Deucher @ 2021-10-07 14:57 UTC (permalink / raw)
  To: Christian König
  Cc: Randy Dunlap, Stephen Rothwell, Maling list - DRI developers,
	freedreno, Rob Clark

On Thu, Oct 7, 2021 at 5:13 AM Christian König
<ckoenig.leichtzumerken@gmail.com> wrote:
>
> We can't even compile test without this
>
> Fixes: b3ed524f84f5 ("drm/msm: allow compile_test on !ARM")
> Signed-off-by: Christian König <christian.koenig@amd.com>

Acked-by: Alex Deucher <alexander.deucher@amd.com>

> ---
>  drivers/gpu/drm/msm/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/msm/Kconfig b/drivers/gpu/drm/msm/Kconfig
> index 5879f67bc88c..d9879b011fb0 100644
> --- a/drivers/gpu/drm/msm/Kconfig
> +++ b/drivers/gpu/drm/msm/Kconfig
> @@ -5,7 +5,7 @@ config DRM_MSM
>         depends on DRM
>         depends on ARCH_QCOM || SOC_IMX5 || COMPILE_TEST
>         depends on IOMMU_SUPPORT
> -       depends on (OF && COMMON_CLK) || COMPILE_TEST
> +       depends on (OF || COMPILE_TEST) && COMMON_CLK
>         depends on QCOM_OCMEM || QCOM_OCMEM=n
>         depends on QCOM_LLCC || QCOM_LLCC=n
>         depends on QCOM_COMMAND_DB || QCOM_COMMAND_DB=n
> --
> 2.25.1
>

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

end of thread, other threads:[~2021-10-07 14:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-07  9:13 [PATCH] drm/msm: fix compilation when COMMON_CLK is disabled Christian König
2021-10-07 14:57 ` Alex Deucher

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.