aboutsummaryrefslogtreecommitdiffstats
path: root/sound/sound_core.c
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
committerGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
commitc71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch)
treeecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /sound/sound_core.c
parentea53c912f8a86a8567697115b6a0d8152beee5c8 (diff)
parent6a00f206debf8a5c8899055726ad127dbeeed098 (diff)
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts: litmus/sched_cedf.c
Diffstat (limited to 'sound/sound_core.c')
-rw-r--r--sound/sound_core.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sound/sound_core.c b/sound/sound_core.c
index cb61317df509..6ce277860fd7 100644
--- a/sound/sound_core.c
+++ b/sound/sound_core.c
@@ -104,7 +104,6 @@ module_exit(cleanup_soundcore);
104 104
105#include <linux/init.h> 105#include <linux/init.h>
106#include <linux/slab.h> 106#include <linux/slab.h>
107#include <linux/smp_lock.h>
108#include <linux/types.h> 107#include <linux/types.h>
109#include <linux/kernel.h> 108#include <linux/kernel.h>
110#include <linux/sound.h> 109#include <linux/sound.h>
@@ -165,6 +164,7 @@ static const struct file_operations soundcore_fops =
165 /* We must have an owner or the module locking fails */ 164 /* We must have an owner or the module locking fails */
166 .owner = THIS_MODULE, 165 .owner = THIS_MODULE,
167 .open = soundcore_open, 166 .open = soundcore_open,
167 .llseek = noop_llseek,
168}; 168};
169 169
170/* 170/*
@@ -384,6 +384,9 @@ int register_sound_special_device(const struct file_operations *fops, int unit,
384 case 4: 384 case 4:
385 name = "audio"; 385 name = "audio";
386 break; 386 break;
387 case 5:
388 name = "dspW";
389 break;
387 case 8: 390 case 8:
388 name = "sequencer2"; 391 name = "sequencer2";
389 if (unit >= SOUND_STEP) 392 if (unit >= SOUND_STEP)