Linux-ARM-Kernel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ep93xx: fix build error in edb93xx framebuffer support
@ 2011-02-03  0:38 H Hartley Sweeten
  2011-02-04 17:03 ` H Hartley Sweeten
  0 siblings, 1 reply; 4+ messages in thread
From: H Hartley Sweeten @ 2011-02-03  0:38 UTC (permalink / raw)
  To: linux-arm-kernel

Add missing semicolon to fix a build error.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reported-by: Alexander Sverdlin <subaparts@yandex.ru>
Cc: Ryan Mallon <ryan@bluewatersys.com>

---

diff --git a/arch/arm/mach-ep93xx/edb93xx.c b/arch/arm/mach-ep93xx/edb93xx.c
index 9b00bee..3f37567 100644
--- a/arch/arm/mach-ep93xx/edb93xx.c
+++ b/arch/arm/mach-ep93xx/edb93xx.c
@@ -126,7 +126,7 @@ static int __init edb93xx_has_fb(void)
 	/* These platforms have an ep93xx with video capability */
 	return (machine_is_edb9307() || machine_is_edb9307a() ||
 		machine_is_edb9312() || machine_is_edb9315() ||
-		machine_is_edb9315a())
+		machine_is_edb9315a());
 }
 
 static void __init edb93xx_register_fb(void)

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

* [PATCH] ep93xx: fix build error in edb93xx framebuffer support
  2011-02-03  0:38 [PATCH] ep93xx: fix build error in edb93xx framebuffer support H Hartley Sweeten
@ 2011-02-04 17:03 ` H Hartley Sweeten
  2011-02-04 17:07   ` Russell King - ARM Linux
  0 siblings, 1 reply; 4+ messages in thread
From: H Hartley Sweeten @ 2011-02-04 17:03 UTC (permalink / raw)
  To: linux-arm-kernel

Russell,

The patch below is needed to fix a build error introduced by:

ARM: 6643/1: ep93xx: add framebuffer support to edb93xx boards

This patch is in linux-next now (commit 6491e80bbb830a593649be9fce83c6b2a520e8d7)
but has not reached Linus tree.

Should I add it to your patch tracking system?

Thanks,
Hartley

-----Original Message-----
From: linux-arm-kernel-bounces@lists.infradead.org [mailto:linux-arm-kernel-bounces at lists.infradead.org] On Behalf Of H Hartley Sweeten
Sent: Wednesday, February 02, 2011 5:38 PM
To: ARM Kernel
Cc: Ryan Mallon; subaparts at yandex.ru
Subject: [PATCH] ep93xx: fix build error in edb93xx framebuffer support

Add missing semicolon to fix a build error.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reported-by: Alexander Sverdlin <subaparts@yandex.ru>
Cc: Ryan Mallon <ryan@bluewatersys.com>

---

diff --git a/arch/arm/mach-ep93xx/edb93xx.c b/arch/arm/mach-ep93xx/edb93xx.c
index 9b00bee..3f37567 100644
--- a/arch/arm/mach-ep93xx/edb93xx.c
+++ b/arch/arm/mach-ep93xx/edb93xx.c
@@ -126,7 +126,7 @@ static int __init edb93xx_has_fb(void)
 	/* These platforms have an ep93xx with video capability */
 	return (machine_is_edb9307() || machine_is_edb9307a() ||
 		machine_is_edb9312() || machine_is_edb9315() ||
-		machine_is_edb9315a())
+		machine_is_edb9315a());
 }
 
 static void __init edb93xx_register_fb(void)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel at lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH] ep93xx: fix build error in edb93xx framebuffer support
  2011-02-04 17:03 ` H Hartley Sweeten
@ 2011-02-04 17:07   ` Russell King - ARM Linux
  2011-02-04 17:15     ` H Hartley Sweeten
  0 siblings, 1 reply; 4+ messages in thread
From: Russell King - ARM Linux @ 2011-02-04 17:07 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Feb 04, 2011 at 11:03:12AM -0600, H Hartley Sweeten wrote:
> Russell,
> 
> The patch below is needed to fix a build error introduced by:
> 
> ARM: 6643/1: ep93xx: add framebuffer support to edb93xx boards
> 
> This patch is in linux-next now (commit 6491e80bbb830a593649be9fce83c6b2a520e8d7)
> but has not reached Linus tree.
> 
> Should I add it to your patch tracking system?

It's probably just as easy to roll it into the existing patch.
I'll do that in a bit.

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

* [PATCH] ep93xx: fix build error in edb93xx framebuffer support
  2011-02-04 17:07   ` Russell King - ARM Linux
@ 2011-02-04 17:15     ` H Hartley Sweeten
  0 siblings, 0 replies; 4+ messages in thread
From: H Hartley Sweeten @ 2011-02-04 17:15 UTC (permalink / raw)
  To: linux-arm-kernel

On Friday, February 04, 2011 10:08 AM, Russell King wrote:
> On Fri, Feb 04, 2011 at 11:03:12AM -0600, H Hartley Sweeten wrote:
>> Russell,
>> 
>> The patch below is needed to fix a build error introduced by:
>> 
>> ARM: 6643/1: ep93xx: add framebuffer support to edb93xx boards
>> 
>> This patch is in linux-next now (commit 6491e80bbb830a593649be9fce83c6b2a520e8d7)
>> but has not reached Linus tree.
>> 
>> Should I add it to your patch tracking system?
>
> It's probably just as easy to roll it into the existing patch.
> I'll do that in a bit.

Thanks!  Sorry for the trouble.

Hartley

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

end of thread, other threads:[~2011-02-04 17:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-03  0:38 [PATCH] ep93xx: fix build error in edb93xx framebuffer support H Hartley Sweeten
2011-02-04 17:03 ` H Hartley Sweeten
2011-02-04 17:07   ` Russell King - ARM Linux
2011-02-04 17:15     ` H Hartley Sweeten

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox