linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: mach-footbridge: add missing header file <video/vga.h>
@ 2011-08-17 10:00 Bryan Wu
  2011-08-19  4:37 ` Bryan Wu
  0 siblings, 1 reply; 5+ messages in thread
From: Bryan Wu @ 2011-08-17 10:00 UTC (permalink / raw)
  To: linux-arm-kernel

This patch fixes following building error:
--
arch/arm/mach-footbridge/dc21285.c: In function 'dc21285_preinit':
arch/arm/mach-footbridge/dc21285.c:299:2: error: 'vga_base' undeclared (first use in this function)
arch/arm/mach-footbridge/dc21285.c:299:2: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [arch/arm/mach-footbridge/dc21285.o] Error 1
--

Signed-off-by: Bryan Wu <bryan.wu@canonical.com>
---
 arch/arm/mach-footbridge/dc21285.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-footbridge/dc21285.c b/arch/arm/mach-footbridge/dc21285.c
index 1331fff..18c32a5 100644
--- a/arch/arm/mach-footbridge/dc21285.c
+++ b/arch/arm/mach-footbridge/dc21285.c
@@ -18,6 +18,7 @@
 #include <linux/irq.h>
 #include <linux/io.h>
 #include <linux/spinlock.h>
+#include <video/vga.h>
 
 #include <asm/irq.h>
 #include <asm/system.h>
-- 
1.7.5

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

* [PATCH] ARM: mach-footbridge: add missing header file <video/vga.h>
  2011-08-17 10:00 [PATCH] ARM: mach-footbridge: add missing header file <video/vga.h> Bryan Wu
@ 2011-08-19  4:37 ` Bryan Wu
  2011-08-21  8:41   ` Russell King - ARM Linux
  0 siblings, 1 reply; 5+ messages in thread
From: Bryan Wu @ 2011-08-19  4:37 UTC (permalink / raw)
  To: linux-arm-kernel

Russell,

Also this one. any comment?

Thanks,
-Bryan

On Wed, Aug 17, 2011 at 6:00 PM, Bryan Wu <bryan.wu@canonical.com> wrote:
> This patch fixes following building error:
> --
> arch/arm/mach-footbridge/dc21285.c: In function 'dc21285_preinit':
> arch/arm/mach-footbridge/dc21285.c:299:2: error: 'vga_base' undeclared (first use in this function)
> arch/arm/mach-footbridge/dc21285.c:299:2: note: each undeclared identifier is reported only once for each function it appears in
> make[1]: *** [arch/arm/mach-footbridge/dc21285.o] Error 1
> --
>
> Signed-off-by: Bryan Wu <bryan.wu@canonical.com>
> ---
> ?arch/arm/mach-footbridge/dc21285.c | ? ?1 +
> ?1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/mach-footbridge/dc21285.c b/arch/arm/mach-footbridge/dc21285.c
> index 1331fff..18c32a5 100644
> --- a/arch/arm/mach-footbridge/dc21285.c
> +++ b/arch/arm/mach-footbridge/dc21285.c
> @@ -18,6 +18,7 @@
> ?#include <linux/irq.h>
> ?#include <linux/io.h>
> ?#include <linux/spinlock.h>
> +#include <video/vga.h>
>
> ?#include <asm/irq.h>
> ?#include <asm/system.h>
> --
> 1.7.5
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>



-- 
Bryan Wu <bryan.wu@canonical.com>
Kernel Developer ? ?+86.138-1617-6545 Mobile
Ubuntu Kernel Team
Canonical Ltd. ? ? ?www.canonical.com
Ubuntu - Linux for human beings | www.ubuntu.com

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

* [PATCH] ARM: mach-footbridge: add missing header file <video/vga.h>
  2011-08-19  4:37 ` Bryan Wu
@ 2011-08-21  8:41   ` Russell King - ARM Linux
  2011-08-21 15:36     ` Bryan Wu
  0 siblings, 1 reply; 5+ messages in thread
From: Russell King - ARM Linux @ 2011-08-21  8:41 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Aug 19, 2011 at 12:37:09PM +0800, Bryan Wu wrote:
> Russell,
> 
> Also this one. any comment?

Other than frustration that Rob Herring isn't responding to his breakage
(which is making me want to ignore further patches from Rob - clearly
doesn't care about the effect of his c9d95fb "ARM: convert PCI defines
to variables" patch...)

It looks obviously correct.

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

* [PATCH] ARM: mach-footbridge: add missing header file <video/vga.h>
  2011-08-21  8:41   ` Russell King - ARM Linux
@ 2011-08-21 15:36     ` Bryan Wu
  2011-08-21 18:35       ` Rob Herring
  0 siblings, 1 reply; 5+ messages in thread
From: Bryan Wu @ 2011-08-21 15:36 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Aug 21, 2011 at 4:41 PM, Russell King - ARM Linux
<linux@arm.linux.org.uk> wrote:
> On Fri, Aug 19, 2011 at 12:37:09PM +0800, Bryan Wu wrote:
>> Russell,
>>
>> Also this one. any comment?
>
> Other than frustration that Rob Herring isn't responding to his breakage
> (which is making me want to ignore further patches from Rob - clearly
> doesn't care about the effect of his c9d95fb "ARM: convert PCI defines
> to variables" patch...)
>

I forgot to add Rob in this email loop. Added now.

> It looks obviously correct.
>

Thanks,
-- 
Bryan Wu <bryan.wu@canonical.com>
Kernel Developer ? ?+86.138-1617-6545 Mobile
Ubuntu Kernel Team
Canonical Ltd. ? ? ?www.canonical.com
Ubuntu - Linux for human beings | www.ubuntu.com

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

* [PATCH] ARM: mach-footbridge: add missing header file <video/vga.h>
  2011-08-21 15:36     ` Bryan Wu
@ 2011-08-21 18:35       ` Rob Herring
  0 siblings, 0 replies; 5+ messages in thread
From: Rob Herring @ 2011-08-21 18:35 UTC (permalink / raw)
  To: linux-arm-kernel

On 08/21/2011 10:36 AM, Bryan Wu wrote:
> On Sun, Aug 21, 2011 at 4:41 PM, Russell King - ARM Linux
> <linux@arm.linux.org.uk> wrote:
>> On Fri, Aug 19, 2011 at 12:37:09PM +0800, Bryan Wu wrote:
>>> Russell,
>>>
>>> Also this one. any comment?
>>
>> Other than frustration that Rob Herring isn't responding to his breakage
>> (which is making me want to ignore further patches from Rob - clearly
>> doesn't care about the effect of his c9d95fb "ARM: convert PCI defines
>> to variables" patch...)
>>

Sorry, I've been away on vacation Wed-Sat.

> 
> I forgot to add Rob in this email loop. Added now.

Thanks for copying me directly.

> 
>> It looks obviously correct.
>>

I went back to check for other instances and found orion5x is also
broken missing this include. It is also broken by another commit which
I'll fix. Patches coming soon.

Rob

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

end of thread, other threads:[~2011-08-21 18:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-17 10:00 [PATCH] ARM: mach-footbridge: add missing header file <video/vga.h> Bryan Wu
2011-08-19  4:37 ` Bryan Wu
2011-08-21  8:41   ` Russell King - ARM Linux
2011-08-21 15:36     ` Bryan Wu
2011-08-21 18:35       ` Rob Herring

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