[PATCH] uml: audio driver locking
Comment the lack of locking and make a couple of variables static. Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
5bbcbeca2c
commit
b612e475e7
1 changed files with 6 additions and 3 deletions
|
@ -25,9 +25,12 @@ struct hostmixer_state {
|
||||||
#define HOSTAUDIO_DEV_DSP "/dev/sound/dsp"
|
#define HOSTAUDIO_DEV_DSP "/dev/sound/dsp"
|
||||||
#define HOSTAUDIO_DEV_MIXER "/dev/sound/mixer"
|
#define HOSTAUDIO_DEV_MIXER "/dev/sound/mixer"
|
||||||
|
|
||||||
/* Only changed from linux_main at boot time */
|
/* Changed either at boot time or module load time. At boot, this is
|
||||||
char *dsp = HOSTAUDIO_DEV_DSP;
|
* single-threaded; at module load, multiple modules would each have
|
||||||
char *mixer = HOSTAUDIO_DEV_MIXER;
|
* their own copy of these variables.
|
||||||
|
*/
|
||||||
|
static char *dsp = HOSTAUDIO_DEV_DSP;
|
||||||
|
static char *mixer = HOSTAUDIO_DEV_MIXER;
|
||||||
|
|
||||||
#define DSP_HELP \
|
#define DSP_HELP \
|
||||||
" This is used to specify the host dsp device to the hostaudio driver.\n" \
|
" This is used to specify the host dsp device to the hostaudio driver.\n" \
|
||||||
|
|
Loading…
Add table
Reference in a new issue