[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>
This commit is contained in:

committed by
Jaroslav Kysela

parent
0af68e5ed4
commit
bd7bf042e8
@@ -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;
|
||||
}
|
||||
|
||||
|
@@ -527,26 +527,31 @@ int __devinit snd_emu10k1_proc_init(emu10k1_t * emu)
|
||||
snd_info_set_text_ops(entry, emu, 1024, snd_emu_proc_io_reg_read);
|
||||
entry->c.text.write_size = 64;
|
||||
entry->c.text.write = snd_emu_proc_io_reg_write;
|
||||
entry->mode |= S_IWUSR;
|
||||
}
|
||||
if (! snd_card_proc_new(emu->card, "ptr_regs00a", &entry)) {
|
||||
snd_info_set_text_ops(entry, emu, 65536, snd_emu_proc_ptr_reg_read00a);
|
||||
entry->c.text.write_size = 64;
|
||||
entry->c.text.write = snd_emu_proc_ptr_reg_write00;
|
||||
entry->mode |= S_IWUSR;
|
||||
}
|
||||
if (! snd_card_proc_new(emu->card, "ptr_regs00b", &entry)) {
|
||||
snd_info_set_text_ops(entry, emu, 65536, snd_emu_proc_ptr_reg_read00b);
|
||||
entry->c.text.write_size = 64;
|
||||
entry->c.text.write = snd_emu_proc_ptr_reg_write00;
|
||||
entry->mode |= S_IWUSR;
|
||||
}
|
||||
if (! snd_card_proc_new(emu->card, "ptr_regs20a", &entry)) {
|
||||
snd_info_set_text_ops(entry, emu, 65536, snd_emu_proc_ptr_reg_read20a);
|
||||
entry->c.text.write_size = 64;
|
||||
entry->c.text.write = snd_emu_proc_ptr_reg_write20;
|
||||
entry->mode |= S_IWUSR;
|
||||
}
|
||||
if (! snd_card_proc_new(emu->card, "ptr_regs20b", &entry)) {
|
||||
snd_info_set_text_ops(entry, emu, 65536, snd_emu_proc_ptr_reg_read20b);
|
||||
entry->c.text.write_size = 64;
|
||||
entry->c.text.write = snd_emu_proc_ptr_reg_write20;
|
||||
entry->mode |= S_IWUSR;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user