diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-09-03 11:19:44 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-09-03 11:19:44 +0000 |
commit | ed4208e931fe75c1b59cb04c66eda9ca47c822ab (patch) | |
tree | a0dded1f31a3fb094ee887c997bdc86af0201ec8 /sys/dev/puc | |
parent | c91680190a9545c6e776f652b5aeaeb5b9a108af (diff) | |
download | src-ed4208e931fe75c1b59cb04c66eda9ca47c822ab.tar.gz src-ed4208e931fe75c1b59cb04c66eda9ca47c822ab.zip |
Style: fix a function whitespace stuff-up. Remove a debugging printf.
Notes
Notes:
svn path=/head/; revision=102894
Diffstat (limited to 'sys/dev/puc')
-rw-r--r-- | sys/dev/puc/puc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/puc/puc.c b/sys/dev/puc/puc.c index c8dbb822419c..708239d7c72e 100644 --- a/sys/dev/puc/puc.c +++ b/sys/dev/puc/puc.c @@ -309,7 +309,6 @@ puc_intr(void *arg) int i; struct puc_softc *sc; -printf("puc_intr\n"); sc = (struct puc_softc *)arg; for (i = 0; i < PUC_MAX_PORTS; i++) if (sc->sc_ports[i].ihand != NULL) @@ -337,7 +336,9 @@ puc_find_description(uint32_t vend, uint32_t prod, uint32_t svend, return (NULL); } -static int puc_find_free_unit(char *name) + +static int +puc_find_free_unit(char *name) { devclass_t dc; int start; |