Commit 21b84ebe authored by Lucas Stach's avatar Lucas Stach Committed by Shawn Guo
Browse files

soc: imx: imx8mp-blk-ctrl: don't set power device name



Setting the device name after it has been registered confuses the sysfs
cleanup paths. This has already been fixed for the imx8m-blk-ctrl driver in
b64b46fb ("Revert "soc: imx: imx8m-blk-ctrl: set power device name""),
but the same problem exists in imx8mp-blk-ctrl.

Fixes: 556f5cf9 ("soc: imx: add i.MX8MP HSIO blk-ctrl")
Signed-off-by: default avatarLucas Stach <l.stach@pengutronix.de>
Reviewed-by: default avatarPeng Fan <peng.fan@nxp.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent c10a5855
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -592,7 +592,6 @@ static int imx8mp_blk_ctrl_probe(struct platform_device *pdev)
			ret = PTR_ERR(domain->power_dev);
			goto cleanup_pds;
		}
		dev_set_name(domain->power_dev, "%s", data->name);

		domain->genpd.name = data->name;
		domain->genpd.power_on = imx8mp_blk_ctrl_power_on;