return ret;
 }
 
-static int caam_remove(struct platform_device *pdev)
-{
-       struct device *ctrldev;
-       struct caam_drv_private *ctrlpriv;
-
-       ctrldev = &pdev->dev;
-       ctrlpriv = dev_get_drvdata(ctrldev);
-
-       /* Remove platform devices under the crypto node */
-       of_platform_depopulate(ctrldev);
-
-       return 0;
-}
-
 /*
  * kick_trng - sets the various parameters for enabling the initialization
  *            of the RNG4 block in CAAM
 #endif
        }
 
-       ret = of_platform_populate(nprop, caam_match, NULL, dev);
+       ret = devm_of_platform_populate(dev);
        if (ret) {
                dev_err(dev, "JR platform devices creation error\n");
                return ret;
        /* If no QI and no rings specified, quit and go home */
        if ((!ctrlpriv->qi_present) && (!ctrlpriv->total_jobrs)) {
                dev_err(dev, "no queues configured, terminating\n");
-               ret = -ENOMEM;
-               goto caam_remove;
+               return -ENOMEM;
        }
 
        if (ctrlpriv->era < 10)
                } while ((ret == -EAGAIN) && (ent_delay < RTSDCTL_ENT_DLY_MAX));
                if (ret) {
                        dev_err(dev, "failed to instantiate RNG");
-                       goto caam_remove;
+                       return ret;
                }
                /*
                 * Set handles init'ed by this module as the complement of the
                            &ctrlpriv->ctl_tdsk_wrap);
 #endif
        return 0;
-
-caam_remove:
-       caam_remove(pdev);
-       return ret;
 }
 
 static struct platform_driver caam_driver = {
                .of_match_table = caam_match,
        },
        .probe       = caam_probe,
-       .remove      = caam_remove,
 };
 
 module_platform_driver(caam_driver);