]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
dmaengine: qcom_hidma: configure DMA and MSI for OF
authorSinan Kaya <okaya@codeaurora.org>
Fri, 7 Oct 2016 05:25:09 +0000 (01:25 -0400)
committerVinod Koul <vinod.koul@intel.com>
Wed, 19 Oct 2016 13:32:58 +0000 (19:02 +0530)
Configure the DMA bindings for the device tree based firmware.

Signed-off-by: Sinan Kaya <okaya@codeaurora.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/qcom/hidma_mgmt.c

index 82f36e4660830b33262bfc3d9a2acc5ef198a336..185d29c77c22cedfe6fcf65492d8ea929e62e417 100644 (file)
@@ -375,8 +375,15 @@ static int __init hidma_mgmt_of_populate_channels(struct device_node *np)
                        ret = PTR_ERR(new_pdev);
                        goto out;
                }
+               of_node_get(child);
+               new_pdev->dev.of_node = child;
                of_dma_configure(&new_pdev->dev, child);
-
+               /*
+                * It is assumed that calling of_msi_configure is safe on
+                * platforms with or without MSI support.
+                */
+               of_msi_configure(&new_pdev->dev, child);
+               of_node_put(child);
                kfree(res);
                res = NULL;
        }