forked from Minki/linux
hwrng: pic32 - Use device-managed registration API
Use devm_hwrng_register to get rid of manual unregistration. Signed-off-by: Tian Tao <tiantao6@hisilicon.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
ae8351284b
commit
7ea39973d1
@ -96,7 +96,7 @@ static int pic32_rng_probe(struct platform_device *pdev)
|
||||
priv->rng.name = pdev->name;
|
||||
priv->rng.read = pic32_rng_read;
|
||||
|
||||
ret = hwrng_register(&priv->rng);
|
||||
ret = devm_hwrng_register(&pdev->dev, &priv->rng);
|
||||
if (ret)
|
||||
goto err_register;
|
||||
|
||||
@ -113,7 +113,6 @@ static int pic32_rng_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct pic32_rng *rng = platform_get_drvdata(pdev);
|
||||
|
||||
hwrng_unregister(&rng->rng);
|
||||
writel(0, rng->base + RNGCON);
|
||||
clk_disable_unprepare(rng->clk);
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user