mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-08 06:44:35 +08:00
5ac7568829
Fix following warnings: sun4d_irq.c:146:6: warning: symbol 'sun4d_handler_irq' was not declared. Should it be static? sun4d_irq.c:239:17: warning: symbol 'sun4d_irq' was not declared. Should it be static? sun4d_irq.c:288:14: warning: symbol '_sun4d_build_device_irq' was not declared. Should it be static? sun4d_irq.c:323:14: warning: symbol 'sun4d_build_device_irq' was not declared. Should it be static? sun4d_irq.c:386:14: warning: symbol 'sun4d_build_timer_irq' was not declared. Should it be static? sun4d_irq.c:482:13: warning: symbol 'sun4d_init_sbi_irq' was not declared. Should it be static? Apply static when applicable, otherwise add prototype Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
25 lines
494 B
C
25 lines
494 B
C
/* irq.h: IRQ registers on the Sparc.
|
|
*
|
|
* Copyright (C) 1995, 2007 David S. Miller (davem@davemloft.net)
|
|
*/
|
|
|
|
#ifndef _SPARC_IRQ_H
|
|
#define _SPARC_IRQ_H
|
|
|
|
/* Allocated number of logical irq numbers.
|
|
* sun4d boxes (ss2000e) should be OK with ~32.
|
|
* Be on the safe side and make room for 64
|
|
*/
|
|
#define NR_IRQS 64
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#define irq_canonicalize(irq) (irq)
|
|
|
|
extern void __init init_IRQ(void);
|
|
void __init sun4d_init_sbi_irq(void);
|
|
|
|
#define NO_IRQ 0xffffffff
|
|
|
|
#endif
|