ASoC: qdsp6: q6afe-dai: remove component fw related code
authorSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Fri, 13 Jul 2018 15:36:29 +0000 (16:36 +0100)
committerMark Brown <broonie@kernel.org>
Wed, 18 Jul 2018 12:08:19 +0000 (13:08 +0100)
Now that the component framework is integrated into the ASoC core,
remove any redundant code in this driver.

Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Reviewed-by: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/qcom/qdsp6/q6afe-dai.c

index 074582a..e988692 100644 (file)
@@ -4,7 +4,6 @@
 
 #include <linux/err.h>
 #include <linux/init.h>
-#include <linux/component.h>
 #include <linux/module.h>
 #include <linux/device.h>
 #include <linux/platform_device.h>
@@ -1395,11 +1394,12 @@ static void of_q6afe_parse_dai_data(struct device *dev,
        }
 }
 
-static int q6afe_dai_bind(struct device *dev, struct device *master, void *data)
+static int q6afe_dai_dev_probe(struct platform_device *pdev)
 {
        struct q6afe_dai_data *dai_data;
+       struct device *dev = &pdev->dev;
 
-       dai_data = kzalloc(sizeof(*dai_data), GFP_KERNEL);
+       dai_data = devm_kzalloc(dev, sizeof(*dai_data), GFP_KERNEL);
        if (!dai_data)
                return -ENOMEM;
 
@@ -1407,35 +1407,10 @@ static int q6afe_dai_bind(struct device *dev, struct device *master, void *data)
 
        of_q6afe_parse_dai_data(dev, dai_data);
 
-       return snd_soc_register_component(dev, &q6afe_dai_component,
+       return devm_snd_soc_register_component(dev, &q6afe_dai_component,
                                          q6afe_dais, ARRAY_SIZE(q6afe_dais));
 }
 
-static void q6afe_dai_unbind(struct device *dev, struct device *master,
-                            void *data)
-{
-       struct q6afe_dai_data *dai_data = dev_get_drvdata(dev);
-
-       snd_soc_unregister_component(dev);
-       kfree(dai_data);
-}
-
-static const struct component_ops q6afe_dai_comp_ops = {
-       .bind   = q6afe_dai_bind,
-       .unbind = q6afe_dai_unbind,
-};
-
-static int q6afe_dai_dev_probe(struct platform_device *pdev)
-{
-       return component_add(&pdev->dev, &q6afe_dai_comp_ops);
-}
-
-static int q6afe_dai_dev_remove(struct platform_device *pdev)
-{
-       component_del(&pdev->dev, &q6afe_dai_comp_ops);
-       return 0;
-}
-
 static const struct of_device_id q6afe_dai_device_id[] = {
        { .compatible = "qcom,q6afe-dais" },
        {},
@@ -1448,7 +1423,6 @@ static struct platform_driver q6afe_dai_platform_driver = {
                .of_match_table = of_match_ptr(q6afe_dai_device_id),
        },
        .probe = q6afe_dai_dev_probe,
-       .remove = q6afe_dai_dev_remove,
 };
 module_platform_driver(q6afe_dai_platform_driver);