On Mon 17 Dec 07:02 PST 2018, Thierry Reding wrote: > From: Thierry Reding <[email protected]> > > Get rid of some boilerplate driver removal code by using the newly added > device-managed registration API. > > Cc: Bjorn Andersson <[email protected]>
Reviewed-by: Bjorn Andersson <[email protected]> Regards, Bjorn > Cc: Georgi Djakov <[email protected]> > Cc: Sibi Sankar <[email protected]> > Signed-off-by: Thierry Reding <[email protected]> > --- > drivers/mailbox/qcom-apcs-ipc-mailbox.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/mailbox/qcom-apcs-ipc-mailbox.c > b/drivers/mailbox/qcom-apcs-ipc-mailbox.c > index aed23ac9550d..3cf2937be149 100644 > --- a/drivers/mailbox/qcom-apcs-ipc-mailbox.c > +++ b/drivers/mailbox/qcom-apcs-ipc-mailbox.c > @@ -91,7 +91,7 @@ static int qcom_apcs_ipc_probe(struct platform_device *pdev) > apcs->mbox.chans = apcs->mbox_chans; > apcs->mbox.num_chans = ARRAY_SIZE(apcs->mbox_chans); > > - ret = mbox_controller_register(&apcs->mbox); > + ret = devm_mbox_controller_register(&pdev->dev, &apcs->mbox); > if (ret) { > dev_err(&pdev->dev, "failed to register APCS IPC controller\n"); > return ret; > @@ -115,7 +115,6 @@ static int qcom_apcs_ipc_remove(struct platform_device > *pdev) > struct qcom_apcs_ipc *apcs = platform_get_drvdata(pdev); > struct platform_device *clk = apcs->clk; > > - mbox_controller_unregister(&apcs->mbox); > platform_device_unregister(clk); > > return 0; > -- > 2.19.1 >

