aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2013-02-11 11:06:34 +0000
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-02-11 11:06:34 +0000
commit1b4327dced27fdddc38b938e393f8e9dc7bd8f66 (patch)
treef8b7f881ef921cc4f8458b26f4a95e1184ab22de /sound/soc
parentMerge remote-tracking branch 'asoc/topic/cs4271' into asoc-next (diff)
parentASoC: cs42l52: Convert to devm_input_allocate_device() (diff)
downloadlinux-dev-1b4327dced27fdddc38b938e393f8e9dc7bd8f66.tar.xz
linux-dev-1b4327dced27fdddc38b938e393f8e9dc7bd8f66.zip
Merge remote-tracking branch 'asoc/topic/cs42l52' into asoc-next
Diffstat (limited to 'sound/soc')
-rw-r--r--sound/soc/codecs/cs42l52.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/soc/codecs/cs42l52.c b/sound/soc/codecs/cs42l52.c
index 9811a5478c87..0f6f481cec09 100644
--- a/sound/soc/codecs/cs42l52.c
+++ b/sound/soc/codecs/cs42l52.c
@@ -1038,7 +1038,7 @@ static void cs42l52_init_beep(struct snd_soc_codec *codec)
struct cs42l52_private *cs42l52 = snd_soc_codec_get_drvdata(codec);
int ret;
- cs42l52->beep = input_allocate_device();
+ cs42l52->beep = devm_input_allocate_device(codec->dev);
if (!cs42l52->beep) {
dev_err(codec->dev, "Failed to allocate beep device\n");
return;
@@ -1059,7 +1059,6 @@ static void cs42l52_init_beep(struct snd_soc_codec *codec)
ret = input_register_device(cs42l52->beep);
if (ret != 0) {
- input_free_device(cs42l52->beep);
cs42l52->beep = NULL;
dev_err(codec->dev, "Failed to register beep device\n");
}
@@ -1076,7 +1075,6 @@ static void cs42l52_free_beep(struct snd_soc_codec *codec)
struct cs42l52_private *cs42l52 = snd_soc_codec_get_drvdata(codec);
device_remove_file(codec->dev, &dev_attr_beep);
- input_unregister_device(cs42l52->beep);
cancel_work_sync(&cs42l52->beep_work);
cs42l52->beep = NULL;