diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-10-16 10:16:17 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-10-16 10:16:17 +0000 |
| commit | 3412120f035a4c601188da2dbdc6c072352223bd (patch) | |
| tree | fe2b7308b152af324f193424b37bb9ee5a1a0812 /sys/dev/speaker | |
| parent | 3899c8a38fd114f1d8678f8009740a0da7eb1d79 (diff) | |
Notes
Diffstat (limited to 'sys/dev/speaker')
| -rw-r--r-- | sys/dev/speaker/spkr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/speaker/spkr.c b/sys/dev/speaker/spkr.c index 67084b63312b..522e6c60c09c 100644 --- a/sys/dev/speaker/spkr.c +++ b/sys/dev/speaker/spkr.c @@ -459,7 +459,7 @@ playstring(cp, slen) static int spkr_active = FALSE; /* exclusion flag */ static char *spkr_inbuf; /* incoming buf */ -int +static int spkropen(dev, flags, fmt, td) dev_t dev; int flags; @@ -486,7 +486,7 @@ spkropen(dev, flags, fmt, td) } } -int +static int spkrwrite(dev, uio, ioflag) dev_t dev; struct uio *uio; @@ -518,7 +518,7 @@ spkrwrite(dev, uio, ioflag) } } -int +static int spkrclose(dev, flags, fmt, td) dev_t dev; int flags; @@ -541,7 +541,7 @@ spkrclose(dev, flags, fmt, td) } } -int +static int spkrioctl(dev, cmd, cmdarg, flags, td) dev_t dev; unsigned long cmd; |
