Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=31d106c68b1af88835a474556052d6efbfec99c5
Commit:     31d106c68b1af88835a474556052d6efbfec99c5
Parent:     dfbbbe92956b849a6704dbd5352348d6ba1165da
Author:     Paul Mundt <[EMAIL PROTECTED]>
AuthorDate: Mon May 21 15:10:04 2007 +0900
Committer:  Paul Mundt <[EMAIL PROTECTED]>
CommitDate: Mon May 21 15:10:04 2007 +0900

    sh: Fix dreamcast build for IRQ changes.
    
    When the irq.h changes went in, the dreamcast code was still
    referencing an old value. Switch it back to the IRQ number,
    which fixes this:
    
    arch/sh/boards/dreamcast/irq.c: In function `disable_systemasic_irq':
    arch/sh/boards/dreamcast/irq.c:59: error: `OFFCHIP_IRQ_BASE' undeclared 
(first
    use in this function)
    arch/sh/boards/dreamcast/irq.c:59: error: (Each undeclared identifier is 
reported only once
    arch/sh/boards/dreamcast/irq.c:59: error: for each function it appears in.)
    
    Reported-by: Adrian McMenamin <[EMAIL PROTECTED]>
    Signed-off-by: Paul Mundt <[EMAIL PROTECTED]>
---
 include/asm-sh/dreamcast/sysasic.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/asm-sh/dreamcast/sysasic.h 
b/include/asm-sh/dreamcast/sysasic.h
index 7874e3d..f334266 100644
--- a/include/asm-sh/dreamcast/sysasic.h
+++ b/include/asm-sh/dreamcast/sysasic.h
@@ -23,7 +23,7 @@
    takes.
 */
 
-#define HW_EVENT_IRQ_BASE  OFFCHIP_IRQ_BASE /* 48 */
+#define HW_EVENT_IRQ_BASE  48
 
 /* IRQ 13 */
 #define HW_EVENT_VSYNC     (HW_EVENT_IRQ_BASE +  5) /* VSync */
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to