Merge tag 'iommu-updates-v4.9' of git://git.kernel.org/pub/scm/linux/kernel/git/joro...
[cascardo/linux.git] / drivers / remoteproc / da8xx_remoteproc.c
index f8d6a06..1afac8f 100644 (file)
@@ -26,8 +26,7 @@
 static char *da8xx_fw_name;
 module_param(da8xx_fw_name, charp, S_IRUGO);
 MODULE_PARM_DESC(da8xx_fw_name,
-                "\n\t\tName of DSP firmware file in /lib/firmware"
-                " (if not specified defaults to 'rproc-dsp-fw')");
+                "Name of DSP firmware file in /lib/firmware (if not specified defaults to 'rproc-dsp-fw')");
 
 /*
  * OMAP-L138 Technical References:
@@ -148,7 +147,7 @@ static void da8xx_rproc_kick(struct rproc *rproc, int vqid)
 {
        struct da8xx_rproc *drproc = (struct da8xx_rproc *)rproc->priv;
 
-       /* Interupt remote proc */
+       /* Interrupt remote proc */
        writel(SYSCFG_CHIPSIG2, drproc->chipsig);
 }
 
@@ -262,7 +261,7 @@ static int da8xx_rproc_probe(struct platform_device *pdev)
        return 0;
 
 free_rproc:
-       rproc_put(rproc);
+       rproc_free(rproc);
 
        return ret;
 }
@@ -291,7 +290,7 @@ static int da8xx_rproc_remove(struct platform_device *pdev)
        disable_irq(drproc->irq);
 
        rproc_del(rproc);
-       rproc_put(rproc);
+       rproc_free(rproc);
 
        return 0;
 }