From: Chris Wright Date: Tue, 11 Oct 2005 01:59:46 +0000 (-0700) Subject: Add sparc64 build fix from DaveM X-Git-Tag: v2.6.14.1~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=26353b45c3e409f1366a792cd8b3b55a065e0bd5;p=thirdparty%2Fkernel%2Fstable-queue.git Add sparc64 build fix from DaveM --- diff --git a/queue/series b/queue/series index e69de29bb2d..a7ffc949480 100644 --- a/queue/series +++ b/queue/series @@ -0,0 +1 @@ +sparc64-build-fix.patch diff --git a/queue/sparc64-build-fix.patch b/queue/sparc64-build-fix.patch new file mode 100644 index 00000000000..ffc7a5baca5 --- /dev/null +++ b/queue/sparc64-build-fix.patch @@ -0,0 +1,31 @@ +From stable-bounces@linux.kernel.org Sat Oct 8 21:14:33 2005 +Date: Sat, 08 Oct 2005 21:14:34 -0700 (PDT) +To: stable@kernel.org +From: "David S. Miller" +Cc: +Subject: [SPARC64]: Fix compile error in irq.c + +From: Sven Hartge + +irq.c is missing the inclusion of asm/io.h, which causes +readb() and writeb() the be undefined. + +Signed-off-by: Sven Hartge +Signed-off-by: David S. Miller +Signed-off-by: Chris Wright +--- + arch/sparc64/kernel/irq.c | 1 + + 1 files changed, 1 insertion(+) + +Index: linux-2.6.13.y/arch/sparc64/kernel/irq.c +=================================================================== +--- linux-2.6.13.y.orig/arch/sparc64/kernel/irq.c ++++ linux-2.6.13.y/arch/sparc64/kernel/irq.c +@@ -27,6 +27,7 @@ + #include + #include + #include ++#include + #include + #include + #include