Skip to content

Commit 25f9f5a

Browse files
committed
remoteproc: wcss: Fix arguments passed to qcom_add_glink_subdev()
Recently qcom_add_glink_subdev() was extended to also take the glink_ssr identifier as an argument and I missed this while applying '8a226e2c71bb ("remoteproc: wcss: add support for rpmsg communication")'. Fixes: 8a226e2 ("remoteproc: wcss: add support for rpmsg communication") Reported-by: kbuild test robot <[email protected]> Signed-off-by: Bjorn Andersson <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Bjorn Andersson <[email protected]>
1 parent c774ad0 commit 25f9f5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/remoteproc/qcom_q6v5_wcss.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ static int q6v5_wcss_probe(struct platform_device *pdev)
560560
if (ret)
561561
goto free_rproc;
562562

563-
qcom_add_glink_subdev(rproc, &wcss->glink_subdev);
563+
qcom_add_glink_subdev(rproc, &wcss->glink_subdev, "q6wcss");
564564
qcom_add_ssr_subdev(rproc, &wcss->ssr_subdev, "q6wcss");
565565

566566
ret = rproc_add(rproc);

0 commit comments

Comments
 (0)