linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arch: hexagon: include: asm: add "vga.h" in Kbuild
@ 2013-11-19  5:17 Chen Gang
  2013-11-24  4:23 ` Chen Gang
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Chen Gang @ 2013-11-19  5:17 UTC (permalink / raw)
  To: Richard Kuo, Peter Zijlstra, Ingo Molnar
  Cc: linux-hexagon, linux-kernel@vger.kernel.org

Need include generic "vga.h", or can not pass compiling with
allmodconfig, the related error:

    CC [M]  drivers/gpu/drm/drm_irq.o
  In file included from include/linux/vgaarb.h:34:0,
                   from drivers/gpu/drm/drm_irq.c:42:
  include/video/vga.h:22:21: fatal error: asm/vga.h: No such file or directory

Also move "preempt.h" upper to match sort order.


Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
---
 arch/hexagon/include/asm/Kbuild |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/arch/hexagon/include/asm/Kbuild b/arch/hexagon/include/asm/Kbuild
index 67c3450..424e28e 100644
--- a/arch/hexagon/include/asm/Kbuild
+++ b/arch/hexagon/include/asm/Kbuild
@@ -31,6 +31,7 @@ generic-y += pci.h
 generic-y += percpu.h
 generic-y += poll.h
 generic-y += posix_types.h
+generic-y += preempt.h
 generic-y += resource.h
 generic-y += rwsem.h
 generic-y += scatterlist.h
@@ -52,5 +53,5 @@ generic-y += trace_clock.h
 generic-y += types.h
 generic-y += ucontext.h
 generic-y += unaligned.h
+generic-y += vga.h
 generic-y += xor.h
-generic-y += preempt.h
-- 
1.7.7.6

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

* Re: [PATCH] arch: hexagon: include: asm: add "vga.h" in Kbuild
  2013-11-19  5:17 [PATCH] arch: hexagon: include: asm: add "vga.h" in Kbuild Chen Gang
@ 2013-11-24  4:23 ` Chen Gang
  2013-11-24  4:30 ` Chen Gang
  2013-11-25  1:20 ` rkuo
  2 siblings, 0 replies; 4+ messages in thread
From: Chen Gang @ 2013-11-24  4:23 UTC (permalink / raw)
  To: Richard Kuo, Peter Zijlstra, Ingo Molnar
  Cc: linux-hexagon, linux-kernel@vger.kernel.org

Hello Maintainers:

Please help check it when you have time, thanks.

I changed my mail address -- I have to leave original company, so at
present, I need be as a volunteer to Public Open Source (just like
another quite a few volunteers).

Within this month, I still want to let hexagon pass allmodconfig, hope
we can continue (in the future, at least, as a volunteer, I still plan
to provide 1-3 patches per month to upstream kernel).


BTW: in fact, my original contributions to upstream kernel have given me
much help for finding/changing 'jobs' (but sorry, I can not be sure
whether I can still mainly focus on upstream kernel, next).


:-)

Thanks.

On 11/19/2013 01:17 PM, Chen Gang wrote:
> Need include generic "vga.h", or can not pass compiling with
> allmodconfig, the related error:
> 
>     CC [M]  drivers/gpu/drm/drm_irq.o
>   In file included from include/linux/vgaarb.h:34:0,
>                    from drivers/gpu/drm/drm_irq.c:42:
>   include/video/vga.h:22:21: fatal error: asm/vga.h: No such file or directory
> 
> Also move "preempt.h" upper to match sort order.
> 
> 
> Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
> ---
>  arch/hexagon/include/asm/Kbuild |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/hexagon/include/asm/Kbuild b/arch/hexagon/include/asm/Kbuild
> index 67c3450..424e28e 100644
> --- a/arch/hexagon/include/asm/Kbuild
> +++ b/arch/hexagon/include/asm/Kbuild
> @@ -31,6 +31,7 @@ generic-y += pci.h
>  generic-y += percpu.h
>  generic-y += poll.h
>  generic-y += posix_types.h
> +generic-y += preempt.h
>  generic-y += resource.h
>  generic-y += rwsem.h
>  generic-y += scatterlist.h
> @@ -52,5 +53,5 @@ generic-y += trace_clock.h
>  generic-y += types.h
>  generic-y += ucontext.h
>  generic-y += unaligned.h
> +generic-y += vga.h
>  generic-y += xor.h
> -generic-y += preempt.h
> 


-- 
Chen Gang

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

* Re: [PATCH] arch: hexagon: include: asm: add "vga.h" in Kbuild
  2013-11-19  5:17 [PATCH] arch: hexagon: include: asm: add "vga.h" in Kbuild Chen Gang
  2013-11-24  4:23 ` Chen Gang
@ 2013-11-24  4:30 ` Chen Gang
  2013-11-25  1:20 ` rkuo
  2 siblings, 0 replies; 4+ messages in thread
From: Chen Gang @ 2013-11-24  4:30 UTC (permalink / raw)
  To: Richard Kuo, Peter Zijlstra, Ingo Molnar
  Cc: linux-hexagon, linux-kernel@vger.kernel.org

Hello Maintainers:

Please help check it when you have time, thanks.

I changed my mail address -- I have to leave original company, so at
present, I need be as a volunteer to Public Open Source (just like
another quite a few volunteers).

Within this month, I still want to let hexagon pass allmodconfig, hope
we can continue (in the future, at least, as a volunteer, I still plan
to provide 1-3 patches per month to upstream kernel).


BTW: in fact, my original contributions to upstream kernel have given me
much help for finding/changing 'jobs' (but sorry, I can not be sure
whether I can still mainly focus on upstream kernel, next).


:-)

Thanks.

On 11/19/2013 01:17 PM, Chen Gang wrote:
> Need include generic "vga.h", or can not pass compiling with
> allmodconfig, the related error:
> 
>     CC [M]  drivers/gpu/drm/drm_irq.o
>   In file included from include/linux/vgaarb.h:34:0,
>                    from drivers/gpu/drm/drm_irq.c:42:
>   include/video/vga.h:22:21: fatal error: asm/vga.h: No such file or directory
> 
> Also move "preempt.h" upper to match sort order.
> 
> 
> Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
> ---
>  arch/hexagon/include/asm/Kbuild |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/hexagon/include/asm/Kbuild b/arch/hexagon/include/asm/Kbuild
> index 67c3450..424e28e 100644
> --- a/arch/hexagon/include/asm/Kbuild
> +++ b/arch/hexagon/include/asm/Kbuild
> @@ -31,6 +31,7 @@ generic-y += pci.h
>  generic-y += percpu.h
>  generic-y += poll.h
>  generic-y += posix_types.h
> +generic-y += preempt.h
>  generic-y += resource.h
>  generic-y += rwsem.h
>  generic-y += scatterlist.h
> @@ -52,5 +53,5 @@ generic-y += trace_clock.h
>  generic-y += types.h
>  generic-y += ucontext.h
>  generic-y += unaligned.h
> +generic-y += vga.h
>  generic-y += xor.h
> -generic-y += preempt.h
> 


-- 
Chen Gang

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

* Re: [PATCH] arch: hexagon: include: asm: add "vga.h" in Kbuild
  2013-11-19  5:17 [PATCH] arch: hexagon: include: asm: add "vga.h" in Kbuild Chen Gang
  2013-11-24  4:23 ` Chen Gang
  2013-11-24  4:30 ` Chen Gang
@ 2013-11-25  1:20 ` rkuo
  2 siblings, 0 replies; 4+ messages in thread
From: rkuo @ 2013-11-25  1:20 UTC (permalink / raw)
  To: Chen Gang
  Cc: Peter Zijlstra, Ingo Molnar, linux-hexagon,
	linux-kernel@vger.kernel.org

On Tue, Nov 19, 2013 at 01:17:21PM +0800, Chen Gang wrote:
> Need include generic "vga.h", or can not pass compiling with
> allmodconfig, the related error:
> 
>     CC [M]  drivers/gpu/drm/drm_irq.o
>   In file included from include/linux/vgaarb.h:34:0,
>                    from drivers/gpu/drm/drm_irq.c:42:
>   include/video/vga.h:22:21: fatal error: asm/vga.h: No such file or directory
> 
> Also move "preempt.h" upper to match sort order.
> 
> 
> Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
> ---
>  arch/hexagon/include/asm/Kbuild |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
> 

Acked-by: Richard Kuo <rkuo@codeaurora.org>

-- 

Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

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

end of thread, other threads:[~2013-11-25  1:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-19  5:17 [PATCH] arch: hexagon: include: asm: add "vga.h" in Kbuild Chen Gang
2013-11-24  4:23 ` Chen Gang
2013-11-24  4:30 ` Chen Gang
2013-11-25  1:20 ` rkuo

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