diff options
Diffstat (limited to 'sound/sound_core.c')
-rw-r--r-- | sound/sound_core.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/sound_core.c b/sound/sound_core.c index b4efb22db561..40ad000c2e3c 100644 --- a/sound/sound_core.c +++ b/sound/sound_core.c | |||
@@ -413,7 +413,7 @@ int register_sound_special_device(const struct file_operations *fops, int unit, | |||
413 | break; | 413 | break; |
414 | } | 414 | } |
415 | return sound_insert_unit(&chains[chain], fops, -1, unit, max_unit, | 415 | return sound_insert_unit(&chains[chain], fops, -1, unit, max_unit, |
416 | name, S_IRUSR | S_IWUSR, dev); | 416 | name, 0600, dev); |
417 | } | 417 | } |
418 | 418 | ||
419 | EXPORT_SYMBOL(register_sound_special_device); | 419 | EXPORT_SYMBOL(register_sound_special_device); |
@@ -440,7 +440,7 @@ EXPORT_SYMBOL(register_sound_special); | |||
440 | int register_sound_mixer(const struct file_operations *fops, int dev) | 440 | int register_sound_mixer(const struct file_operations *fops, int dev) |
441 | { | 441 | { |
442 | return sound_insert_unit(&chains[0], fops, dev, 0, 128, | 442 | return sound_insert_unit(&chains[0], fops, dev, 0, 128, |
443 | "mixer", S_IRUSR | S_IWUSR, NULL); | 443 | "mixer", 0600, NULL); |
444 | } | 444 | } |
445 | 445 | ||
446 | EXPORT_SYMBOL(register_sound_mixer); | 446 | EXPORT_SYMBOL(register_sound_mixer); |
@@ -468,7 +468,7 @@ EXPORT_SYMBOL(register_sound_mixer); | |||
468 | int register_sound_dsp(const struct file_operations *fops, int dev) | 468 | int register_sound_dsp(const struct file_operations *fops, int dev) |
469 | { | 469 | { |
470 | return sound_insert_unit(&chains[3], fops, dev, 3, 131, | 470 | return sound_insert_unit(&chains[3], fops, dev, 3, 131, |
471 | "dsp", S_IWUSR | S_IRUSR, NULL); | 471 | "dsp", 0600, NULL); |
472 | } | 472 | } |
473 | 473 | ||
474 | EXPORT_SYMBOL(register_sound_dsp); | 474 | EXPORT_SYMBOL(register_sound_dsp); |