diff options
Diffstat (limited to 'arch/um/drivers')
-rw-r--r-- | arch/um/drivers/hostaudio_kern.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/arch/um/drivers/hostaudio_kern.c b/arch/um/drivers/hostaudio_kern.c index a0d148ea63d6..f61fa0562202 100644 --- a/arch/um/drivers/hostaudio_kern.c +++ b/arch/um/drivers/hostaudio_kern.c | |||
@@ -25,9 +25,12 @@ struct hostmixer_state { | |||
25 | #define HOSTAUDIO_DEV_DSP "/dev/sound/dsp" | 25 | #define HOSTAUDIO_DEV_DSP "/dev/sound/dsp" |
26 | #define HOSTAUDIO_DEV_MIXER "/dev/sound/mixer" | 26 | #define HOSTAUDIO_DEV_MIXER "/dev/sound/mixer" |
27 | 27 | ||
28 | /* Only changed from linux_main at boot time */ | 28 | /* Changed either at boot time or module load time. At boot, this is |
29 | char *dsp = HOSTAUDIO_DEV_DSP; | 29 | * single-threaded; at module load, multiple modules would each have |
30 | char *mixer = HOSTAUDIO_DEV_MIXER; | 30 | * their own copy of these variables. |
31 | */ | ||
32 | static char *dsp = HOSTAUDIO_DEV_DSP; | ||
33 | static char *mixer = HOSTAUDIO_DEV_MIXER; | ||
31 | 34 | ||
32 | #define DSP_HELP \ | 35 | #define DSP_HELP \ |
33 | " This is used to specify the host dsp device to the hostaudio driver.\n" \ | 36 | " This is used to specify the host dsp device to the hostaudio driver.\n" \ |