diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-06-20 23:12:12 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-06-20 23:12:12 +0000 |
commit | 27c717b0a6a2a13a264dad1b0baaf206ad729c63 (patch) | |
tree | 7de71609ae75604ff7861fe6740367f53885f5a2 | |
parent | cd546120afcaf1c5c9058a1e7c94552cca7568ab (diff) |
Comment spelling fix, and remove static regardless of
CBB_DEBUG setting
-rw-r--r-- | sys/dev/pci/pccbb.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/dev/pci/pccbb.c b/sys/dev/pci/pccbb.c index 956f07f29ca..b6594de0064 100644 --- a/sys/dev/pci/pccbb.c +++ b/sys/dev/pci/pccbb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pccbb.c,v 1.20 2001/06/12 15:40:32 niklas Exp $ */ +/* $OpenBSD: pccbb.c,v 1.21 2001/06/20 23:12:11 niklas Exp $ */ /* $NetBSD: pccbb.c,v 1.42 2000/06/16 23:41:35 cgd Exp $ */ /* @@ -82,10 +82,8 @@ struct cfdriver cbb_cd = { #if defined CBB_DEBUG #define DPRINTF(x) printf x -#define STATIC #else #define DPRINTF(x) -#define STATIC static #endif int pcicbbmatch __P((struct device *, void *, void *)); @@ -987,7 +985,7 @@ pccbbintr_function(sc) * sentense instead of switch-case sentense because of * avoiding duplicate case value error. More than one * IPL_XXX use same value. It depends on - * implimentation. + * implementation. */ splchanged = 1; #if 0 @@ -1283,7 +1281,7 @@ struct cb_poll_str { static struct cb_poll_str cb_poll[10]; static int cb_poll_n = 0; -STATIC void cb_pcmcia_poll __P((void *arg)); +void cb_pcmcia_poll __P((void *arg)); void cb_pcmcia_poll(arg) @@ -2680,7 +2678,7 @@ struct pccbb_poll_str { static struct pccbb_poll_str pccbb_poll[10]; static int pccbb_poll_n = 0; -STATIC void pccbb_pcmcia_poll __P((void *arg)); +void pccbb_pcmcia_poll __P((void *arg)); void pccbb_pcmcia_poll(arg) |