All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH REPOST 2] drm: tegra: don't depend on OF
@ 2013-03-21 17:57 Stephen Warren
       [not found] ` <1363888630-30197-1-git-send-email-swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Stephen Warren @ 2013-03-21 17:57 UTC (permalink / raw)
  To: David Airlie
  Cc: dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren

From: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>

ARCH_TEGRA always enabled OF, so there's no need for any driver to
depend on it.

Signed-off-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
Acked-by: Thierry Reding <thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org>
---
 drivers/gpu/drm/tegra/Kconfig |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/tegra/Kconfig b/drivers/gpu/drm/tegra/Kconfig
index be1daf7..15974ae 100644
--- a/drivers/gpu/drm/tegra/Kconfig
+++ b/drivers/gpu/drm/tegra/Kconfig
@@ -1,6 +1,6 @@
 config DRM_TEGRA
 	tristate "NVIDIA Tegra DRM"
-	depends on DRM && OF && ARCH_TEGRA
+	depends on DRM && ARCH_TEGRA
 	select DRM_KMS_HELPER
 	select DRM_GEM_CMA_HELPER
 	select DRM_KMS_CMA_HELPER
-- 
1.7.10.4

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

* Re: [PATCH REPOST 2] drm: tegra: don't depend on OF
       [not found] ` <1363888630-30197-1-git-send-email-swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
@ 2013-03-21 19:02   ` Rob Clark
       [not found]     ` <CAF6AEGs0Sw=-xGv9+Aq6xnTktE3R4xcGPokVpmjqEAC1uOct8A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Rob Clark @ 2013-03-21 19:02 UTC (permalink / raw)
  To: Stephen Warren
  Cc: David Airlie, linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren,
	dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

How far away are we from supporting tegradrm with ARCH_MULTIPLATFORM?
It would be nice to be able to at least compile-test drm core changes
with all the arm drivers in one shot..

BR,
-R

On Thu, Mar 21, 2013 at 1:57 PM, Stephen Warren <swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org> wrote:
> From: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
>
> ARCH_TEGRA always enabled OF, so there's no need for any driver to
> depend on it.
>
> Signed-off-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
> Acked-by: Thierry Reding <thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org>
> ---
>  drivers/gpu/drm/tegra/Kconfig |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/tegra/Kconfig b/drivers/gpu/drm/tegra/Kconfig
> index be1daf7..15974ae 100644
> --- a/drivers/gpu/drm/tegra/Kconfig
> +++ b/drivers/gpu/drm/tegra/Kconfig
> @@ -1,6 +1,6 @@
>  config DRM_TEGRA
>         tristate "NVIDIA Tegra DRM"
> -       depends on DRM && OF && ARCH_TEGRA
> +       depends on DRM && ARCH_TEGRA
>         select DRM_KMS_HELPER
>         select DRM_GEM_CMA_HELPER
>         select DRM_KMS_CMA_HELPER
> --
> 1.7.10.4
>
> _______________________________________________
> dri-devel mailing list
> dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH REPOST 2] drm: tegra: don't depend on OF
       [not found]     ` <CAF6AEGs0Sw=-xGv9+Aq6xnTktE3R4xcGPokVpmjqEAC1uOct8A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2013-03-21 19:03       ` Stephen Warren
  0 siblings, 0 replies; 3+ messages in thread
From: Stephen Warren @ 2013-03-21 19:03 UTC (permalink / raw)
  To: Rob Clark
  Cc: David Airlie, linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren,
	dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

On 03/21/2013 01:02 PM, Rob Clark wrote:
> How far away are we from supporting tegradrm with ARCH_MULTIPLATFORM?
> It would be nice to be able to at least compile-test drm core changes
> with all the arm drivers in one shot..

Pretty close. It might happen in 3.10 if I get time, otherwise it should
happen for 3.11.

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

end of thread, other threads:[~2013-03-21 19:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-21 17:57 [PATCH REPOST 2] drm: tegra: don't depend on OF Stephen Warren
     [not found] ` <1363888630-30197-1-git-send-email-swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2013-03-21 19:02   ` Rob Clark
     [not found]     ` <CAF6AEGs0Sw=-xGv9+Aq6xnTktE3R4xcGPokVpmjqEAC1uOct8A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-03-21 19:03       ` Stephen Warren

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.