All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] fix Kconfig breakage in drivers/video
       [not found] <20100314225329.f5dc3e05.krzysztof.h1@poczta.fm>
@ 2010-03-14 22:19 ` David Miller
       [not found] ` <20100315063919.GB27515@jasper.tkos.co.il>
  1 sibling, 0 replies; 5+ messages in thread
From: David Miller @ 2010-03-14 22:19 UTC (permalink / raw)
  To: krzysztof.h1; +Cc: akpm, linux-fbdev-devel, baruch

From: Krzysztof Helt <krzysztof.h1@poczta.fm>
Date: Sun, 14 Mar 2010 22:53:29 +0100

> From: Krzysztof Helt <krzysztof.h1@wp.pl>
> 
> There are two new options inside the CONFIG_FB section which do not
> depend on the CONFIG_FB. This break Kconfig menu layout.
> 
> Fix it and reduce few conditions for sparc frame buffers
> as the FB_SBUS == ((FB = y) && SPARC).
> 
> Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>

Acked-by: David S. Miller <davem@davemloft.net>

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev

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

* Re: [PATCH] fix Kconfig breakage in drivers/video
       [not found] ` <20100315063919.GB27515@jasper.tkos.co.il>
@ 2010-03-23 19:11   ` Andrew Morton
  2010-04-27 22:57     ` Andrew Morton
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Morton @ 2010-03-23 19:11 UTC (permalink / raw)
  To: Baruch Siach; +Cc: Uwe Kleine-König, linux-fbdev-devel, David Miller

On Mon, 15 Mar 2010 08:39:20 +0200
Baruch Siach <baruch@tkos.co.il> wrote:

> Hi Krzysztof,
> 
> On Sun, Mar 14, 2010 at 10:53:29PM +0100, Krzysztof Helt wrote:
> > From: Krzysztof Helt <krzysztof.h1@wp.pl>
> > 
> > There are two new options inside the CONFIG_FB section which do not
> > depend on the CONFIG_FB. This break Kconfig menu layout.
> > 
> > Fix it and reduce few conditions for sparc frame buffers
> > as the FB_SBUS == ((FB = y) && SPARC).
> > 
> > Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
> > ---
> > 
> > --- linux-orig/drivers/video/Kconfig	2010-03-14 23:54:39.000000000 +0100
> > +++ linux-git/drivers/video/Kconfig	2010-03-15 00:05:59.000000000 +0100
> > @@ -400,12 +400,9 @@ config FB_SA1100
> >  	  If you plan to use the LCD display with your SA-1100 system, say
> >  	  Y here.
> >  
> > -config HAVE_FB_IMX
> > -	bool
> > -
> >  config FB_IMX
> >  	tristate "Motorola i.MX LCD support"
> > -	depends on FB && (HAVE_FB_IMX || ARCH_MX1 || ARCH_MX2)
> > +	depends on FB && (ARCH_MX1 || ARCH_MX2)
> 
> This hunk reverts f6014419 (imxfb: add support for i.MX25). Is this 
> intentional?
> 

Did this question get addressed?

Thanks.

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev

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

* Re: [PATCH] fix Kconfig breakage in drivers/video
  2010-03-23 19:11   ` Andrew Morton
@ 2010-04-27 22:57     ` Andrew Morton
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Morton @ 2010-04-27 22:57 UTC (permalink / raw)
  To: Baruch Siach, Krzysztof Helt, linux-fbdev-devel, David Miller, Uwe

On Tue, 23 Mar 2010 12:11:37 -0700
Andrew Morton <akpm@linux-foundation.org> wrote:

> On Mon, 15 Mar 2010 08:39:20 +0200
> Baruch Siach <baruch@tkos.co.il> wrote:
> 
> > Hi Krzysztof,
> > 
> > On Sun, Mar 14, 2010 at 10:53:29PM +0100, Krzysztof Helt wrote:
> > > From: Krzysztof Helt <krzysztof.h1@wp.pl>
> > > 
> > > There are two new options inside the CONFIG_FB section which do not
> > > depend on the CONFIG_FB. This break Kconfig menu layout.
> > > 
> > > Fix it and reduce few conditions for sparc frame buffers
> > > as the FB_SBUS == ((FB = y) && SPARC).
> > > 
> > > Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
> > > ---
> > > 
> > > --- linux-orig/drivers/video/Kconfig	2010-03-14 23:54:39.000000000 +0100
> > > +++ linux-git/drivers/video/Kconfig	2010-03-15 00:05:59.000000000 +0100
> > > @@ -400,12 +400,9 @@ config FB_SA1100
> > >  	  If you plan to use the LCD display with your SA-1100 system, say
> > >  	  Y here.
> > >  
> > > -config HAVE_FB_IMX
> > > -	bool
> > > -
> > >  config FB_IMX
> > >  	tristate "Motorola i.MX LCD support"
> > > -	depends on FB && (HAVE_FB_IMX || ARCH_MX1 || ARCH_MX2)
> > > +	depends on FB && (ARCH_MX1 || ARCH_MX2)
> > 
> > This hunk reverts f6014419 (imxfb: add support for i.MX25). Is this 
> > intentional?
> > 
> 
> Did this question get addressed?
> 
> Thanks.

<a month passes>

Krzysztof?

------------------------------------------------------------------------------

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

* Re: [PATCH] fix Kconfig breakage in drivers/video
  2010-03-15 11:54 James Simmons
@ 2010-03-15 11:58 ` James Simmons
  0 siblings, 0 replies; 5+ messages in thread
From: James Simmons @ 2010-03-15 11:58 UTC (permalink / raw)
  To: linux-fbdev


Hi Krzysztof,

On Sun, Mar 14, 2010 at 10:53:29PM +0100, Krzysztof Helt wrote:
> From: Krzysztof Helt <krzysztof.h1@wp.pl>
> 
> There are two new options inside the CONFIG_FB section which do not
> depend on the CONFIG_FB. This break Kconfig menu layout.
> 
> Fix it and reduce few conditions for sparc frame buffers
> as the FB_SBUS = ((FB = y) && SPARC).
> 
> Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
> ---
> 
> --- linux-orig/drivers/video/Kconfig	2010-03-14 23:54:39.000000000 +0100
> +++ linux-git/drivers/video/Kconfig	2010-03-15 00:05:59.000000000 +0100
> @@ -400,12 +400,9 @@ config FB_SA1100
>  	  If you plan to use the LCD display with your SA-1100 system, say
>  	  Y here.
>  
> -config HAVE_FB_IMX
> -	bool
> -
>  config FB_IMX
>  	tristate "Motorola i.MX LCD support"
> -	depends on FB && (HAVE_FB_IMX || ARCH_MX1 || ARCH_MX2)
> +	depends on FB && (ARCH_MX1 || ARCH_MX2)

This hunk reverts f6014419 (imxfb: add support for i.MX25). Is this 
intentional?

baruch

-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{   - baruch@tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -



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

* [PATCH] fix Kconfig breakage in drivers/video
@ 2010-03-15 11:54 James Simmons
  2010-03-15 11:58 ` James Simmons
  0 siblings, 1 reply; 5+ messages in thread
From: James Simmons @ 2010-03-15 11:54 UTC (permalink / raw)
  To: linux-fbdev


Forward to new mailing list. Please us this mailing list instead.

From: Krzysztof Helt <krzysztof.h1@poczta.fm>
To: linux-fbdev-devel@lists.sourceforge.net
Cc: Andrew Morton <akpm@linux-foundation.org>, David Miller <davem@davemloft.net>, Baruch Siach <baruch@tkos.co.il>
Subject: [PATCH] fix Kconfig breakage in drivers/video

From: Krzysztof Helt <krzysztof.h1@wp.pl>

There are two new options inside the CONFIG_FB section which do not
depend on the CONFIG_FB. This break Kconfig menu layout.

Fix it and reduce few conditions for sparc frame buffers
as the FB_SBUS = ((FB = y) && SPARC).

Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
---

--- linux-orig/drivers/video/Kconfig	2010-03-14 23:54:39.000000000 +0100
+++ linux-git/drivers/video/Kconfig	2010-03-15 00:05:59.000000000 +0100
@@ -400,12 +400,9 @@ config FB_SA1100
 	  If you plan to use the LCD display with your SA-1100 system, say
 	  Y here.
 
-config HAVE_FB_IMX
-	bool
-
 config FB_IMX
 	tristate "Motorola i.MX LCD support"
-	depends on FB && (HAVE_FB_IMX || ARCH_MX1 || ARCH_MX2)
+	depends on FB && (ARCH_MX1 || ARCH_MX2)
 	select FB_CFB_FILLRECT
 	select FB_CFB_COPYAREA
 	select FB_CFB_IMAGEBLIT
@@ -802,7 +799,7 @@ config FB_SBUS
 
 config FB_BW2
 	bool "BWtwo support"
-	depends on (FB = y) && (SPARC && FB_SBUS)
+	depends on FB_SBUS
 	select FB_CFB_FILLRECT
 	select FB_CFB_COPYAREA
 	select FB_CFB_IMAGEBLIT
@@ -811,7 +808,7 @@ config FB_BW2
 
 config FB_CG3
 	bool "CGthree support"
-	depends on (FB = y) && (SPARC && FB_SBUS)
+	depends on FB_SBUS
 	select FB_CFB_FILLRECT
 	select FB_CFB_COPYAREA
 	select FB_CFB_IMAGEBLIT
@@ -820,7 +817,7 @@ config FB_CG3
 
 config FB_CG6
 	bool "CGsix (GX,TurboGX) support"
-	depends on (FB = y) && (SPARC && FB_SBUS)
+	depends on FB_SBUS
 	select FB_CFB_COPYAREA
 	select FB_CFB_IMAGEBLIT
 	help
@@ -914,7 +911,7 @@ config FB_XVR2500
 
 config FB_XVR1000
 	bool "Sun XVR-1000 support"
-	depends on SPARC64
+	depends on (FB = y) && SPARC64
 	select FB_CFB_FILLRECT
 	select FB_CFB_COPYAREA
 	select FB_CFB_IMAGEBLIT

----------------------------------------------------------------------
Wygraj z armia wampirow!
Kliknij >>> http://link.interia.pl/f23a0




    [ Part 3: "Included Message" ]

From: linux-fbdev-devel-request@lists.sourceforge.net
Subject: confirm 9aa31557d6574dc9acdf61937aa75c169a46fb42

If you reply to this message, keeping the Subject: header intact,
Mailman will discard the held message.  Do this if the message is
spam.  If you reply to this message and include an Approved: header
with the list password in it, the message will be approved for posting
to the list.  The Approved: header can also appear in the first line
of the body of the reply.

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

end of thread, other threads:[~2010-04-27 22:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20100314225329.f5dc3e05.krzysztof.h1@poczta.fm>
2010-03-14 22:19 ` [PATCH] fix Kconfig breakage in drivers/video David Miller
     [not found] ` <20100315063919.GB27515@jasper.tkos.co.il>
2010-03-23 19:11   ` Andrew Morton
2010-04-27 22:57     ` Andrew Morton
2010-03-15 11:54 James Simmons
2010-03-15 11:58 ` James Simmons

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.