]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ASoC: Intel: move the driver wq init to a routine
authorSubhransu S. Prusty <subhransu.s.prusty@intel.com>
Thu, 30 Oct 2014 10:51:45 +0000 (16:21 +0530)
committerMark Brown <broonie@kernel.org>
Fri, 31 Oct 2014 16:57:25 +0000 (16:57 +0000)
This will be used by ACPI code as well, so moving to common routine helps

Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/sst/sst.c

index fdada405eda7983ed6e7b8f60132dfdf2cf93d8c..f9a6d6d117d6d3cded252a7d0e45ed2d9ce10c37 100644 (file)
@@ -206,6 +206,22 @@ void sst_process_pending_msg(struct work_struct *work)
        ctx->ops->post_message(ctx, NULL, false);
 }
 
+static int sst_workqueue_init(struct intel_sst_drv *ctx)
+{
+       INIT_LIST_HEAD(&ctx->memcpy_list);
+       INIT_LIST_HEAD(&ctx->rx_list);
+       INIT_LIST_HEAD(&ctx->ipc_dispatch_list);
+       INIT_LIST_HEAD(&ctx->block_list);
+       INIT_WORK(&ctx->ipc_post_msg_wq, sst_process_pending_msg);
+       init_waitqueue_head(&ctx->wait_queue);
+
+       ctx->post_msg_wq =
+               create_singlethread_workqueue("sst_post_msg_wq");
+       if (!ctx->post_msg_wq)
+               return -EBUSY;
+       return 0;
+}
+
 /*
 * intel_sst_probe - PCI probe function
 *
@@ -254,24 +270,13 @@ static int intel_sst_probe(struct pci_dev *pci,
        sst_drv_ctx->use_dma = 0;
        sst_drv_ctx->use_lli = 0;
 
-       INIT_LIST_HEAD(&sst_drv_ctx->memcpy_list);
-       INIT_LIST_HEAD(&sst_drv_ctx->ipc_dispatch_list);
-       INIT_LIST_HEAD(&sst_drv_ctx->block_list);
-       INIT_LIST_HEAD(&sst_drv_ctx->rx_list);
-
-       sst_drv_ctx->post_msg_wq =
-               create_singlethread_workqueue("sst_post_msg_wq");
-       if (!sst_drv_ctx->post_msg_wq) {
-               ret = -EINVAL;
-               goto do_free_drv_ctx;
-       }
-       INIT_WORK(&sst_drv_ctx->ipc_post_msg_wq, sst_process_pending_msg);
-       init_waitqueue_head(&sst_drv_ctx->wait_queue);
-
        spin_lock_init(&sst_drv_ctx->ipc_spin_lock);
        spin_lock_init(&sst_drv_ctx->block_lock);
        spin_lock_init(&sst_drv_ctx->rx_msg_lock);
 
+       if (sst_workqueue_init(sst_drv_ctx))
+               return -EINVAL;
+
        dev_info(sst_drv_ctx->dev, "Got drv data max stream %d\n",
                                sst_drv_ctx->info.max_streams);
        for (i = 1; i <= sst_drv_ctx->info.max_streams; i++) {
@@ -414,7 +419,6 @@ do_release_regions:
        pci_release_regions(pci);
 do_free_mem:
        destroy_workqueue(sst_drv_ctx->post_msg_wq);
-do_free_drv_ctx:
        dev_err(sst_drv_ctx->dev, "Probe failed with %d\n", ret);
        return ret;
 }