Commit 2dc6de1c authored by Miquel Raynal's avatar Miquel Raynal

Merge tag 'cfi/for-5.17' into mtd/next

Hyperbus changes for v5.17-rc1

Hyperbus changes:

Couple of fixes in Renesas hyperbus rpc-if driver to avoid crash on
module remove and for missing check for error value in probe.
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
parents 6420ac0a baaf965f
...@@ -124,7 +124,9 @@ static int rpcif_hb_probe(struct platform_device *pdev) ...@@ -124,7 +124,9 @@ static int rpcif_hb_probe(struct platform_device *pdev)
if (!hyperbus) if (!hyperbus)
return -ENOMEM; return -ENOMEM;
rpcif_sw_init(&hyperbus->rpc, pdev->dev.parent); error = rpcif_sw_init(&hyperbus->rpc, pdev->dev.parent);
if (error)
return error;
platform_set_drvdata(pdev, hyperbus); platform_set_drvdata(pdev, hyperbus);
...@@ -150,9 +152,9 @@ static int rpcif_hb_remove(struct platform_device *pdev) ...@@ -150,9 +152,9 @@ static int rpcif_hb_remove(struct platform_device *pdev)
{ {
struct rpcif_hyperbus *hyperbus = platform_get_drvdata(pdev); struct rpcif_hyperbus *hyperbus = platform_get_drvdata(pdev);
int error = hyperbus_unregister_device(&hyperbus->hbdev); int error = hyperbus_unregister_device(&hyperbus->hbdev);
struct rpcif *rpc = dev_get_drvdata(pdev->dev.parent);
rpcif_disable_rpm(rpc); rpcif_disable_rpm(&hyperbus->rpc);
return error; return error;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment