From: Greg Ungerer Date: Wed, 6 Dec 2006 01:36:13 +0000 (+1000) Subject: [PATCH] m68knommu: implement irq_canonicalize() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=dd93e857fca0f6dedb8b0ffe61bf5096029963bb;p=linux-beck.git [PATCH] m68knommu: implement irq_canonicalize() Add a null definition for irq_canonicalize(). It is used in the gerneric serial subsystem code, can't compile without it. Signed-off-by: Greg Ungerer Signed-off-by: Linus Torvalds --- diff --git a/include/asm-m68knommu/irq.h b/include/asm-m68knommu/irq.h index 45e7a2fd1689..7b8f874f8429 100644 --- a/include/asm-m68knommu/irq.h +++ b/include/asm-m68knommu/irq.h @@ -86,5 +86,6 @@ extern void (*mach_disable_irq)(unsigned int); #define enable_irq(x) do { } while (0) #define disable_irq(x) do { } while (0) #define disable_irq_nosync(x) disable_irq(x) +#define irq_canonicalize(irq) (irq) #endif /* _M68K_IRQ_H_ */