Remove static delcarations from {,un}register_pcic_intr declarations
in the not APIC_IO case. This should silence the warnings when building pcic.c as well as the undefined functions when the kernel links. Noticed by: several people in -current and me building the kernel
This commit is contained in:
parent
708b1ae8b1
commit
bb61e7f598
@ -186,12 +186,12 @@ int unregister_pcic_intr(int intr, inthand2_t handler){
|
||||
|
||||
#else /* Not APIC_IO */
|
||||
|
||||
static int register_pcic_intr(int intr, int device_id, u_int flags,
|
||||
int register_pcic_intr(int intr, int device_id, u_int flags,
|
||||
inthand2_t handler, u_int *maskptr, int unit){
|
||||
return register_intr(intr, device_id, flags, handler, maskptr, unit);
|
||||
}
|
||||
|
||||
static int unregister_pcic_intr(int intr, inthand2_t handler){
|
||||
int unregister_pcic_intr(int intr, inthand2_t handler){
|
||||
return unregister_intr(intr, handler);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user