]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
remoteproc: imx_rproc: Use device node name as processor name
authorJiafei Pan <Jiafei.Pan@nxp.com>
Fri, 8 May 2026 03:20:16 +0000 (11:20 +0800)
committerMathieu Poirier <mathieu.poirier@linaro.org>
Tue, 26 May 2026 14:33:43 +0000 (08:33 -0600)
As currently there are maybe multiple remote processors, so change from
using fixed name to using device node name as remote processor name in
order to make them can be distinguished by through of name in sys
filesystem.

Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Link: https://lore.kernel.org/r/20260508032016.27716-1-Jiafei.Pan@nxp.com
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
drivers/remoteproc/imx_rproc.c

index 7f54322244acacb32d8fe17f5e62b6aba21b3084..7662ebd9d2f49baf784f8372f6492765ad74e4d3 100644 (file)
@@ -1287,8 +1287,7 @@ static int imx_rproc_probe(struct platform_device *pdev)
        const struct imx_rproc_dcfg *dcfg;
        int ret;
 
-       /* set some other name then imx */
-       rproc = devm_rproc_alloc(dev, "imx-rproc", &imx_rproc_ops,
+       rproc = devm_rproc_alloc(dev, np->name, &imx_rproc_ops,
                                 NULL, sizeof(*priv));
        if (!rproc)
                return -ENOMEM;