diff options
| author | Nate Williams <nate@FreeBSD.org> | 1997-11-04 17:50:23 +0000 |
|---|---|---|
| committer | Nate Williams <nate@FreeBSD.org> | 1997-11-04 17:50:23 +0000 |
| commit | e7f1b188acb8525ab06ba37ffec93f316f76ddf8 (patch) | |
| tree | ddfa9c0702df516b628c5efae6a281e051e1ae57 /sys | |
| parent | 5796e497dc58513f9e1fe4df472178846e770c7d (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/pccard/pcic.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c index 815190fa41744..14f4c798377f7 100644 --- a/sys/pccard/pcic.c +++ b/sys/pccard/pcic.c @@ -259,14 +259,14 @@ pcic_handle(struct lkm_table *lkmtp, int cmd) { int err = 0; /* default = success*/ - switch( cmd) { + switch(cmd) { case LKM_E_LOAD: /* * Don't load twice! (lkmexists() is exported by kern_lkm.c) */ - if( lkmexists( lkmtp)) - return( EEXIST); + if(lkmexists(lkmtp)) + return(EEXIST); /* * Call the probe routine to find the slots. If * no slots exist, then don't bother loading the module. @@ -287,7 +287,7 @@ pcic_handle(struct lkm_table *lkmtp, int cmd) break; } - return( err); + return(err); } /* @@ -879,7 +879,7 @@ pcic_probe(void) } #endif /* PC98 */ if (validslots) - pcictimeout_ch = timeout(pcictimeout,0,hz/2); + pcictimeout_ch = timeout(pcictimeout, 0, hz/2); return(validslots); } @@ -1140,8 +1140,8 @@ pcic_disable(struct slot *slt) static void pcictimeout(void *chan) { - pcictimeout_ch = timeout(pcictimeout,0,hz/2); pcicintr(0); + pcictimeout_ch = timeout(pcictimeout, 0, hz/2); } /* |
