summaryrefslogtreecommitdiffstats
path: root/sound/pci/emu10k1/emu10k1x.c
diff options
context:
space:
mode:
authorTakashi Iwai2005-04-12 16:27:28 +0200
committerJaroslav Kysela2005-05-29 10:00:39 +0200
commitbd7bf042e89941d4e693a0ec68c5093a2bb2adb3 (patch)
tree4a00c65644765b415b504d4e52471ea232a6dbcf /sound/pci/emu10k1/emu10k1x.c
parent[ALSA] Fix compile warning (diff)
downloadkernel-qcow2-linux-bd7bf042e89941d4e693a0ec68c5093a2bb2adb3.tar.gz
kernel-qcow2-linux-bd7bf042e89941d4e693a0ec68c5093a2bb2adb3.tar.xz
kernel-qcow2-linux-bd7bf042e89941d4e693a0ec68c5093a2bb2adb3.zip
[ALSA] Fix permissions in some /proc files
PCM Midlevel,CA0106 driver,EMU10K1/EMU10K2 driver Fix by Guillaume Chazarain <guichaz@yahoo.fr>: Some tunables in /proc have a write() function, but as their permission does not reflect it, it can be confusing to the user. So here is a patch that corrects the mode of those files. Note that I have only tested the 'xrun_debug' entry. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/emu10k1/emu10k1x.c')
-rw-r--r--sound/pci/emu10k1/emu10k1x.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pci/emu10k1/emu10k1x.c b/sound/pci/emu10k1/emu10k1x.c
index 04ba63762d3b..f8d92335a353 100644
--- a/sound/pci/emu10k1/emu10k1x.c
+++ b/sound/pci/emu10k1/emu10k1x.c
@@ -1075,6 +1075,7 @@ static int __devinit snd_emu10k1x_proc_init(emu10k1x_t * emu)
snd_info_set_text_ops(entry, emu, 1024, snd_emu10k1x_proc_reg_read);
entry->c.text.write_size = 64;
entry->c.text.write = snd_emu10k1x_proc_reg_write;
+ entry->mode |= S_IWUSR;
entry->private_data = emu;
}