linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sh: fix an ms7724se compile breakage
@ 2010-10-03  4:24 Guennadi Liakhovetski
  2010-10-06  7:55 ` Paul Mundt
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Guennadi Liakhovetski @ 2010-10-03  4:24 UTC (permalink / raw)
  To: linux-sh

Fix a compile breakage, caused by my own careless copy-paste.

Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
---
diff --git a/arch/sh/boards/mach-se/7724/setup.c b/arch/sh/boards/mach-se/7724/setup.c
index 3099c36..fe208d6 100644
--- a/arch/sh/boards/mach-se/7724/setup.c
+++ b/arch/sh/boards/mach-se/7724/setup.c
@@ -148,14 +148,14 @@ const static struct fb_videomode lcdc_720p_modes[] = {
 	{
 		.name		= "LB070WV1",
 		.sync		= 0, /* hsync and vsync are active low */
-		.xres		= 1280;
-		.yres		= 720;
-		.left_margin	= 220;
-		.right_margin	= 110;
-		.hsync_len	= 40;
-		.upper_margin	= 20;
-		.lower_margin	= 5;
-		.vsync_len	= 5;
+		.xres		= 1280,
+		.yres		= 720,
+		.left_margin	= 220,
+		.right_margin	= 110,
+		.hsync_len	= 40,
+		.upper_margin	= 20,
+		.lower_margin	= 5,
+		.vsync_len	= 5,
 	},
 };
 
@@ -163,14 +163,14 @@ const static struct fb_videomode lcdc_vga_modes[] = {
 	{
 		.name		= "LB070WV1",
 		.sync		= 0, /* hsync and vsync are active low */
-		.xres		= 640;
-		.yres		= 480;
-		.left_margin	= 105;
-		.right_margin	= 50;
-		.hsync_len	= 96;
-		.upper_margin	= 33;
-		.lower_margin	= 10;
-		.vsync_len	= 2;
+		.xres		= 640,
+		.yres		= 480,
+		.left_margin	= 105,
+		.right_margin	= 50,
+		.hsync_len	= 96,
+		.upper_margin	= 33,
+		.lower_margin	= 10,
+		.vsync_len	= 2,
 	},
 };
 

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

* Re: [PATCH] sh: fix an ms7724se compile breakage
  2010-10-03  4:24 [PATCH] sh: fix an ms7724se compile breakage Guennadi Liakhovetski
@ 2010-10-06  7:55 ` Paul Mundt
  2010-10-06  8:13 ` Guennadi Liakhovetski
  2010-10-06  8:14 ` Paul Mundt
  2 siblings, 0 replies; 4+ messages in thread
From: Paul Mundt @ 2010-10-06  7:55 UTC (permalink / raw)
  To: linux-sh

On Sun, Oct 03, 2010 at 06:24:42AM +0200, Guennadi Liakhovetski wrote:
> Fix a compile breakage, caused by my own careless copy-paste.
> 
> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>

Hmm, I'm confused. This doesn't apply to my tree at present, so the
breakage at least was not introduced there. Is there some patch that this
is against that I've overlooked?

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

* Re: [PATCH] sh: fix an ms7724se compile breakage
  2010-10-03  4:24 [PATCH] sh: fix an ms7724se compile breakage Guennadi Liakhovetski
  2010-10-06  7:55 ` Paul Mundt
@ 2010-10-06  8:13 ` Guennadi Liakhovetski
  2010-10-06  8:14 ` Paul Mundt
  2 siblings, 0 replies; 4+ messages in thread
From: Guennadi Liakhovetski @ 2010-10-06  8:13 UTC (permalink / raw)
  To: linux-sh

On Wed, 6 Oct 2010, Paul Mundt wrote:

> On Sun, Oct 03, 2010 at 06:24:42AM +0200, Guennadi Liakhovetski wrote:
> > Fix a compile breakage, caused by my own careless copy-paste.
> > 
> > Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
> 
> Hmm, I'm confused. This doesn't apply to my tree at present, so the
> breakage at least was not introduced there. Is there some patch that this
> is against that I've overlooked?

Strange, it's against next, and the patch, that introduces the breakage is 
http://marc.info/?l=linux-fbdev&m\x128349840517874&w=2 (44432407) and it's 
signed-off-by you, so, it went via one of your trees. Ah, I see, you 
pushed it via genesis.

Thanks
Guennadi
---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/

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

* Re: [PATCH] sh: fix an ms7724se compile breakage
  2010-10-03  4:24 [PATCH] sh: fix an ms7724se compile breakage Guennadi Liakhovetski
  2010-10-06  7:55 ` Paul Mundt
  2010-10-06  8:13 ` Guennadi Liakhovetski
@ 2010-10-06  8:14 ` Paul Mundt
  2 siblings, 0 replies; 4+ messages in thread
From: Paul Mundt @ 2010-10-06  8:14 UTC (permalink / raw)
  To: linux-sh

On Wed, Oct 06, 2010 at 10:13:13AM +0200, Guennadi Liakhovetski wrote:
> On Wed, 6 Oct 2010, Paul Mundt wrote:
> 
> > On Sun, Oct 03, 2010 at 06:24:42AM +0200, Guennadi Liakhovetski wrote:
> > > Fix a compile breakage, caused by my own careless copy-paste.
> > > 
> > > Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
> > 
> > Hmm, I'm confused. This doesn't apply to my tree at present, so the
> > breakage at least was not introduced there. Is there some patch that this
> > is against that I've overlooked?
> 
> Strange, it's against next, and the patch, that introduces the breakage is 
> http://marc.info/?l=linux-fbdev&m\x128349840517874&w=2 (44432407) and it's 
> signed-off-by you, so, it went via one of your trees. Ah, I see, you 
> pushed it via genesis.
> 
Aha. I'll apply it over there then, thanks.

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

end of thread, other threads:[~2010-10-06  8:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-03  4:24 [PATCH] sh: fix an ms7724se compile breakage Guennadi Liakhovetski
2010-10-06  7:55 ` Paul Mundt
2010-10-06  8:13 ` Guennadi Liakhovetski
2010-10-06  8:14 ` Paul Mundt

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).