Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3091ae77 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven
Browse files

pinctrl: sh-pfc: Update info pointer after SoC-specific init



Update the sh_pfc_soc_info pointer after calling the SoC-specific
initialization function, as it may have been updated to e.g. handle
different SoC revisions.  This makes sure the correct subdriver name is
printed later.

Fixes: 0c151062 ("sh-pfc: Add support for SoC-specific initialization")
Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
parent b332da51
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -586,6 +586,9 @@ static int sh_pfc_probe(struct platform_device *pdev)
		ret = info->ops->init(pfc);
		if (ret < 0)
			return ret;

		/* .init() may have overridden pfc->info */
		info = pfc->info;
	}

	/* Enable dummy states for those platforms without pinctrl support */