aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2008-07-29 06:08:16 -0400
committerJaroslav Kysela <perex@perex.cz>2008-07-29 15:32:08 -0400
commitf6154d6d007c69a330acc9021ec77cca5da9dc4c (patch)
tree54f8aaa54493414e184adcb62ad4eba687ba9e29 /sound
parent0d94e41abe271c86df06bcf72d24f9ca7ce771f0 (diff)
ALSA: hda - use input_free_device()
Use input_free_devce() correctly instead of kfree() at error path. Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/hda_beep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_beep.c b/sound/pci/hda/hda_beep.c
index 5a764c481391..9b77b3e0fa98 100644
--- a/sound/pci/hda/hda_beep.c
+++ b/sound/pci/hda/hda_beep.c
@@ -103,7 +103,7 @@ int snd_hda_attach_beep_device(struct hda_codec *codec, int nid)
103 103
104 err = input_register_device(input_dev); 104 err = input_register_device(input_dev);
105 if (err < 0) { 105 if (err < 0) {
106 kfree(input_dev); 106 input_free_device(input_dev);
107 kfree(beep); 107 kfree(beep);
108 return err; 108 return err;
109 } 109 }