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:
imp 1999-03-12 18:45:47 +00:00
parent 708b1ae8b1
commit bb61e7f598

View File

@ -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);
}