linux-tegra.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drm/tegra: Fix Kconfig dependencies
@ 2014-01-05 18:22 Guenter Roeck
       [not found] ` <1388946171-29459-1-git-send-email-linux-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Guenter Roeck @ 2014-01-05 18:22 UTC (permalink / raw)
  To: Thierry Reding, Terje Bergström
  Cc: David Airlie, Stephen Warren,
	dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA, Guenter Roeck

arm:allmodconfig fails to build with several undefined drm and host1x symbols.

drivers/gpu/drm/tegra/bus.c:52: undefined reference to `drm_dev_alloc'
drivers/gpu/drm/tegra/bus.c:56: undefined reference to `drm_dev_register'
drivers/gpu/drm/tegra/bus.c:67: undefined reference to `drm_dev_free'
drivers/gpu/drm/tegra/bus.c:75: undefined reference to `drm_put_dev'
drivers/gpu/drm/tegra/drm.c:445: undefined reference to `host1x_syncpt_get_base'
drivers/gpu/drm/tegra/drm.c:449: undefined reference to `host1x_syncpt_base_id'

and so on.

This is caused by DRM=m but DRM_TEGRA=y. DRM_TEGRA is bool while DRM is
tristate. DRM_TEGRA can not be set to tristate because it depends on unexported
host1x symbols (and possibly others). Fix by updating DRM_TEGRA dependency.

Also, the DRM_TEGRA help text states that it can be built as module.
Remove that text since it is not (or no longer) correct.

Signed-off-by: Guenter Roeck <linux-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
---
 drivers/gpu/drm/tegra/Kconfig |    5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/tegra/Kconfig b/drivers/gpu/drm/tegra/Kconfig
index 8961ba6..9966547 100644
--- a/drivers/gpu/drm/tegra/Kconfig
+++ b/drivers/gpu/drm/tegra/Kconfig
@@ -1,7 +1,7 @@
 config DRM_TEGRA
 	bool "NVIDIA Tegra DRM"
 	depends on ARCH_TEGRA || ARCH_MULTIPLATFORM
-	depends on DRM
+	depends on DRM=y
 	select TEGRA_HOST1X
 	select DRM_KMS_HELPER
 	select DRM_KMS_FB_HELPER
@@ -11,9 +11,6 @@ config DRM_TEGRA
 	help
 	  Choose this option if you have an NVIDIA Tegra SoC.
 
-	  To compile this driver as a module, choose M here: the module
-	  will be called tegra-drm.
-
 if DRM_TEGRA
 
 config DRM_TEGRA_DEBUG
-- 
1.7.9.7

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

end of thread, other threads:[~2014-01-08 20:04 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-05 18:22 [PATCH] drm/tegra: Fix Kconfig dependencies Guenter Roeck
     [not found] ` <1388946171-29459-1-git-send-email-linux-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
2014-01-06 15:39   ` Thierry Reding
     [not found]     ` <20140106153945.GA6721-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org>
2014-01-06 16:20       ` Guenter Roeck
2014-01-08 13:29         ` Thierry Reding
     [not found]           ` <20140108132924.GA1592-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org>
2014-01-08 13:48             ` Guenter Roeck
     [not found]               ` <52CD573C.4020501-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
2014-01-08 14:01                 ` Thierry Reding
     [not found]                   ` <20140108140137.GA21974-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org>
2014-01-08 16:24                     ` Guenter Roeck
     [not found]                       ` <20140108162402.GA6928-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
2014-01-08 20:04                         ` Thierry Reding

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).