diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-12-08 20:09:00 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-12-08 20:09:00 +0000 |
commit | 959b7375edc06472c448b83fcfc187ed41edd715 (patch) | |
tree | 3d89528d62b34f14d3286d2c0c78e7c2fee71f3b /sys/dev/speaker | |
parent | cc3f51b5373ab21a53d8a3a55f0b9e9ddec5fa7a (diff) |
Staticize some malloc M_ instances.
Notes
Notes:
svn path=/head/; revision=69774
Diffstat (limited to 'sys/dev/speaker')
-rw-r--r-- | sys/dev/speaker/spkr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/speaker/spkr.c b/sys/dev/speaker/spkr.c index e6f0e9543acc..776a9c6b8448 100644 --- a/sys/dev/speaker/spkr.c +++ b/sys/dev/speaker/spkr.c @@ -45,7 +45,7 @@ static struct cdevsw spkr_cdevsw = { /* bmaj */ -1 }; -MALLOC_DEFINE(M_SPKR, "spkr", "Speaker buffer"); +static MALLOC_DEFINE(M_SPKR, "spkr", "Speaker buffer"); /**************** MACHINE DEPENDENT PART STARTS HERE ************************* * |