public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/5] c6x: Wire up asm-generic/xor.h
@ 2013-05-14  7:32 Geert Uytterhoeven
  2013-05-14  7:32 ` [PATCH 2/5] cris: " Geert Uytterhoeven
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2013-05-14  7:32 UTC (permalink / raw)
  To: linux-kernel; +Cc: Geert Uytterhoeven, Mark Salter, linux-c6x-dev

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Mark Salter <msalter@redhat.com>
Cc: linux-c6x-dev@linux-c6x.org
---
Completely untested due to lack of cross-compiler

 arch/c6x/include/asm/Kbuild |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/c6x/include/asm/Kbuild b/arch/c6x/include/asm/Kbuild
index 4258b08..e49f918 100644
--- a/arch/c6x/include/asm/Kbuild
+++ b/arch/c6x/include/asm/Kbuild
@@ -55,3 +55,4 @@ generic-y += types.h
 generic-y += ucontext.h
 generic-y += user.h
 generic-y += vga.h
+generic-y += xor.h
-- 
1.7.0.4


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

* [PATCH 2/5] cris: Wire up asm-generic/xor.h
  2013-05-14  7:32 [PATCH 1/5] c6x: Wire up asm-generic/xor.h Geert Uytterhoeven
@ 2013-05-14  7:32 ` Geert Uytterhoeven
  2013-05-14 16:27   ` Jesper Nilsson
  2013-05-14  7:32 ` [PATCH 3/5] h8300: " Geert Uytterhoeven
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 8+ messages in thread
From: Geert Uytterhoeven @ 2013-05-14  7:32 UTC (permalink / raw)
  To: linux-kernel
  Cc: Geert Uytterhoeven, Mikael Starvik, Jesper Nilsson,
	linux-cris-kernel

crypto/xor.c:25:21: fatal error: asm/xor.h: No such file or directory

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Mikael Starvik <starvik@axis.com>
Cc: Jesper Nilsson <jesper.nilsson@axis.com>
Cc: linux-cris-kernel@axis.com
---
 arch/cris/include/asm/Kbuild |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/cris/include/asm/Kbuild b/arch/cris/include/asm/Kbuild
index 1e7dfad..0dd4b88 100644
--- a/arch/cris/include/asm/Kbuild
+++ b/arch/cris/include/asm/Kbuild
@@ -9,3 +9,4 @@ generic-y += kvm_para.h
 generic-y += linkage.h
 generic-y += module.h
 generic-y += trace_clock.h
+generic-y += xor.h
-- 
1.7.0.4


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

* [PATCH 3/5] h8300: Wire up asm-generic/xor.h
  2013-05-14  7:32 [PATCH 1/5] c6x: Wire up asm-generic/xor.h Geert Uytterhoeven
  2013-05-14  7:32 ` [PATCH 2/5] cris: " Geert Uytterhoeven
@ 2013-05-14  7:32 ` Geert Uytterhoeven
  2013-05-14  7:32 ` [PATCH 4/5] openrisc: " Geert Uytterhoeven
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2013-05-14  7:32 UTC (permalink / raw)
  To: linux-kernel; +Cc: Geert Uytterhoeven, Yoshinori Sato

crypto/xor.c:25:21: fatal error: asm/xor.h: No such file or directory

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
---
 arch/h8300/include/asm/Kbuild |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/h8300/include/asm/Kbuild b/arch/h8300/include/asm/Kbuild
index e0bce30..8ada3cf 100644
--- a/arch/h8300/include/asm/Kbuild
+++ b/arch/h8300/include/asm/Kbuild
@@ -5,3 +5,4 @@ generic-y += linkage.h
 generic-y += mmu.h
 generic-y += module.h
 generic-y += trace_clock.h
+generic-y += xor.h
-- 
1.7.0.4


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

* [PATCH 4/5] openrisc: Wire up asm-generic/xor.h
  2013-05-14  7:32 [PATCH 1/5] c6x: Wire up asm-generic/xor.h Geert Uytterhoeven
  2013-05-14  7:32 ` [PATCH 2/5] cris: " Geert Uytterhoeven
  2013-05-14  7:32 ` [PATCH 3/5] h8300: " Geert Uytterhoeven
@ 2013-05-14  7:32 ` Geert Uytterhoeven
  2013-05-24  6:39   ` Jonas Bonn
  2013-05-14  7:32 ` [PATCH 5/5] score: " Geert Uytterhoeven
  2013-05-17 13:39 ` [PATCH 1/5] c6x: " Mark Salter
  4 siblings, 1 reply; 8+ messages in thread
From: Geert Uytterhoeven @ 2013-05-14  7:32 UTC (permalink / raw)
  To: linux-kernel; +Cc: Geert Uytterhoeven, Jonas Bonn

crypto/xor.c:25:21: error: asm/xor.h: No such file or directory

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Jonas Bonn <jonas@southpole.se>
---
 arch/openrisc/include/asm/Kbuild |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/openrisc/include/asm/Kbuild b/arch/openrisc/include/asm/Kbuild
index f20d01d..195653e 100644
--- a/arch/openrisc/include/asm/Kbuild
+++ b/arch/openrisc/include/asm/Kbuild
@@ -66,3 +66,4 @@ generic-y += types.h
 generic-y += ucontext.h
 generic-y += user.h
 generic-y += word-at-a-time.h
+generic-y += xor.h
-- 
1.7.0.4


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

* [PATCH 5/5] score: Wire up asm-generic/xor.h
  2013-05-14  7:32 [PATCH 1/5] c6x: Wire up asm-generic/xor.h Geert Uytterhoeven
                   ` (2 preceding siblings ...)
  2013-05-14  7:32 ` [PATCH 4/5] openrisc: " Geert Uytterhoeven
@ 2013-05-14  7:32 ` Geert Uytterhoeven
  2013-05-17 13:39 ` [PATCH 1/5] c6x: " Mark Salter
  4 siblings, 0 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2013-05-14  7:32 UTC (permalink / raw)
  To: linux-kernel; +Cc: Geert Uytterhoeven, Chen Liqin, Lennox Wu

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Chen Liqin <liqin.chen@sunplusct.com>
Cc: Lennox Wu <lennox.wu@gmail.com>
---
Completely untested due to lack of cross-compiler

 arch/score/include/asm/Kbuild |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/score/include/asm/Kbuild b/arch/score/include/asm/Kbuild
index cebaff8..e1c7bb9 100644
--- a/arch/score/include/asm/Kbuild
+++ b/arch/score/include/asm/Kbuild
@@ -3,3 +3,4 @@ header-y +=
 
 generic-y += clkdev.h
 generic-y += trace_clock.h
+generic-y += xor.h
-- 
1.7.0.4


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

* Re: [PATCH 2/5] cris: Wire up asm-generic/xor.h
  2013-05-14  7:32 ` [PATCH 2/5] cris: " Geert Uytterhoeven
@ 2013-05-14 16:27   ` Jesper Nilsson
  0 siblings, 0 replies; 8+ messages in thread
From: Jesper Nilsson @ 2013-05-14 16:27 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: linux-kernel@vger.kernel.org, Mikael Starvik, Jesper Nilsson,
	linux-cris-kernel

On Tue, May 14, 2013 at 09:32:03AM +0200, Geert Uytterhoeven wrote:
> crypto/xor.c:25:21: fatal error: asm/xor.h: No such file or directory
> 
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
> Cc: Mikael Starvik <starvik@axis.com>

Acked-by: Jesper Nilsson <jesper.nilsson@axis.com>

> Cc: linux-cris-kernel@axis.com
> ---
>  arch/cris/include/asm/Kbuild |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/cris/include/asm/Kbuild b/arch/cris/include/asm/Kbuild
> index 1e7dfad..0dd4b88 100644
> --- a/arch/cris/include/asm/Kbuild
> +++ b/arch/cris/include/asm/Kbuild
> @@ -9,3 +9,4 @@ generic-y += kvm_para.h
>  generic-y += linkage.h
>  generic-y += module.h
>  generic-y += trace_clock.h
> +generic-y += xor.h
> -- 
> 1.7.0.4

/^JN - Jesper Nilsson
-- 
               Jesper Nilsson -- jesper.nilsson@axis.com

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

* Re: [PATCH 1/5] c6x: Wire up asm-generic/xor.h
  2013-05-14  7:32 [PATCH 1/5] c6x: Wire up asm-generic/xor.h Geert Uytterhoeven
                   ` (3 preceding siblings ...)
  2013-05-14  7:32 ` [PATCH 5/5] score: " Geert Uytterhoeven
@ 2013-05-17 13:39 ` Mark Salter
  4 siblings, 0 replies; 8+ messages in thread
From: Mark Salter @ 2013-05-17 13:39 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: linux-kernel, linux-c6x-dev

On Tue, 2013-05-14 at 09:32 +0200, Geert Uytterhoeven wrote:
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
> Cc: Mark Salter <msalter@redhat.com>
> Cc: linux-c6x-dev@linux-c6x.org
> ---
> Completely untested due to lack of cross-compiler
> 
>  arch/c6x/include/asm/Kbuild |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/c6x/include/asm/Kbuild b/arch/c6x/include/asm/Kbuild
> index 4258b08..e49f918 100644
> --- a/arch/c6x/include/asm/Kbuild
> +++ b/arch/c6x/include/asm/Kbuild
> @@ -55,3 +55,4 @@ generic-y += types.h
>  generic-y += ucontext.h
>  generic-y += user.h
>  generic-y += vga.h
> +generic-y += xor.h

Acked-by: Mark Salter <msalter@redhat.com>
Tested-by: Mark Salter <msalter@redhat.com>




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

* Re: [PATCH 4/5] openrisc: Wire up asm-generic/xor.h
  2013-05-14  7:32 ` [PATCH 4/5] openrisc: " Geert Uytterhoeven
@ 2013-05-24  6:39   ` Jonas Bonn
  0 siblings, 0 replies; 8+ messages in thread
From: Jonas Bonn @ 2013-05-24  6:39 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: linux-kernel

Hi Geert,

On 05/14/2013 09:32 AM, Geert Uytterhoeven wrote:
> crypto/xor.c:25:21: error: asm/xor.h: No such file or directory
>
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
> Cc: Jonas Bonn <jonas@southpole.se>

Acked-by: Jonas Bonn <jonas@southpole.se>

Feel free to take it via your tree for -rc5, as per your "exotic fixes" 
email.

Thanks,
Jonas

> ---
>   arch/openrisc/include/asm/Kbuild |    1 +
>   1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/arch/openrisc/include/asm/Kbuild b/arch/openrisc/include/asm/Kbuild
> index f20d01d..195653e 100644
> --- a/arch/openrisc/include/asm/Kbuild
> +++ b/arch/openrisc/include/asm/Kbuild
> @@ -66,3 +66,4 @@ generic-y += types.h
>   generic-y += ucontext.h
>   generic-y += user.h
>   generic-y += word-at-a-time.h
> +generic-y += xor.h
>


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

end of thread, other threads:[~2013-05-24  7:00 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-14  7:32 [PATCH 1/5] c6x: Wire up asm-generic/xor.h Geert Uytterhoeven
2013-05-14  7:32 ` [PATCH 2/5] cris: " Geert Uytterhoeven
2013-05-14 16:27   ` Jesper Nilsson
2013-05-14  7:32 ` [PATCH 3/5] h8300: " Geert Uytterhoeven
2013-05-14  7:32 ` [PATCH 4/5] openrisc: " Geert Uytterhoeven
2013-05-24  6:39   ` Jonas Bonn
2013-05-14  7:32 ` [PATCH 5/5] score: " Geert Uytterhoeven
2013-05-17 13:39 ` [PATCH 1/5] c6x: " Mark Salter

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