All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 -next] drm/display: Fix build error without CONFIG_OF
@ 2022-05-06 12:32 ` YueHaibing
  0 siblings, 0 replies; 22+ messages in thread
From: YueHaibing @ 2022-05-06 12:32 UTC (permalink / raw)
  To: airlied, daniel, tzimmermann, dmitry.baryshkov
  Cc: dri-devel, linux-kernel, YueHaibing

While CONFIG_OF is n but COMPILE_TEST is y, we got this:

WARNING: unmet direct dependencies detected for DRM_DP_AUX_BUS
  Depends on [n]: HAS_IOMEM [=y] && DRM [=y] && OF [=n]
  Selected by [y]:
  - DRM_MSM [=y] && HAS_IOMEM [=y] && DRM [=y] && (ARCH_QCOM || SOC_IMX5 || COMPILE_TEST [=y]) && COMMON_CLK [=y] && IOMMU_SUPPORT [=y] && (QCOM_OCMEM [=n] || QCOM_OCMEM [=n]=n) && (QCOM_LLCC [=y] || QCOM_LLCC [=y]=n) && (QCOM_COMMAND_DB [=n] || QCOM_COMMAND_DB [=n]=n)

Make DRM_DP_AUX_BUS depends on OF || COMPILE_TEST to fix this warning.

Fixes: f5d01644921b ("drm/msm: select DRM_DP_AUX_BUS for the AUX bus support")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
v2: fix this in DRM_DP_AUX_BUS dependencies
---
 drivers/gpu/drm/display/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/display/Kconfig b/drivers/gpu/drm/display/Kconfig
index 1b6e6af37546..09712b88a5b8 100644
--- a/drivers/gpu/drm/display/Kconfig
+++ b/drivers/gpu/drm/display/Kconfig
@@ -3,7 +3,7 @@
 config DRM_DP_AUX_BUS
 	tristate
 	depends on DRM
-	depends on OF
+	depends on OF || COMPILE_TEST
 
 config DRM_DISPLAY_HELPER
 	tristate
-- 
2.17.1


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

end of thread, other threads:[~2022-05-27  9:57 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-06 12:32 [PATCH v2 -next] drm/display: Fix build error without CONFIG_OF YueHaibing
2022-05-06 12:32 ` YueHaibing
2022-05-06 13:01 ` Dmitry Baryshkov
2022-05-06 13:01   ` Dmitry Baryshkov
2022-05-06 15:52 ` Abhinav Kumar
2022-05-06 15:52   ` Abhinav Kumar
2022-05-21  2:43 ` YueHaibing
2022-05-21  2:43   ` YueHaibing
2022-05-23 12:46 ` Linus Walleij
2022-05-23 12:46   ` Linus Walleij
2022-05-23 12:54   ` Linus Walleij
2022-05-23 12:54     ` Linus Walleij
2022-05-23 12:57     ` Dmitry Baryshkov
2022-05-23 12:57       ` Dmitry Baryshkov
2022-05-25 13:36     ` Dmitry Baryshkov
2022-05-25 13:36       ` Dmitry Baryshkov
2022-05-26 20:08       ` Linus Walleij
2022-05-26 20:08         ` Linus Walleij
2022-05-27  9:56         ` Dmitry Baryshkov
2022-05-27  9:56           ` Dmitry Baryshkov
2022-05-26 15:02     ` Dmitry Baryshkov
2022-05-26 15:02       ` Dmitry Baryshkov

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.