diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-07-21 20:03:34 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-10-16 09:24:44 -0700 |
commit | abe9ab8f62203ced11119fb96acc3b8dd107ebc4 (patch) | |
tree | cb6d6667e6fc216efdfa5b1ba4a3e46c92798090 /sound/sound_core.c | |
parent | d73a1a674b5383bb3b38ae3dd625504ffc623d90 (diff) | |
download | kernel_samsung_aries-abe9ab8f62203ced11119fb96acc3b8dd107ebc4.zip kernel_samsung_aries-abe9ab8f62203ced11119fb96acc3b8dd107ebc4.tar.gz kernel_samsung_aries-abe9ab8f62203ced11119fb96acc3b8dd107ebc4.tar.bz2 |
device create: sound: convert device_create_drvdata to device_create
Now that device_create() has been audited, rename things back to the
original call to be sane.
Cc: Jaroslav Kysela <perex@perex.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'sound/sound_core.c')
-rw-r--r-- | sound/sound_core.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sound/sound_core.c b/sound/sound_core.c index 4ae07e2..faef87a 100644 --- a/sound/sound_core.c +++ b/sound/sound_core.c @@ -220,9 +220,8 @@ static int sound_insert_unit(struct sound_unit **list, const struct file_operati else sprintf(s->name, "sound/%s%d", name, r / SOUND_STEP); - device_create_drvdata(sound_class, dev, - MKDEV(SOUND_MAJOR, s->unit_minor), - NULL, s->name+6); + device_create(sound_class, dev, MKDEV(SOUND_MAJOR, s->unit_minor), + NULL, s->name+6); return r; fail: |