This is a note to let you know that I've just added the patch titled pinctrl: sh-pfc: Update info pointer after SoC-specific init to the 4.9-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: pinctrl-sh-pfc-update-info-pointer-after-soc-specific-init.patch and it can be found in the queue-4.9 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 3091ae775fae17084013021d01513bc1ad274e6a Mon Sep 17 00:00:00 2001 From: Geert Uytterhoeven <geert+renesas@xxxxxxxxx> Date: Thu, 9 Mar 2017 19:20:48 +0100 Subject: pinctrl: sh-pfc: Update info pointer after SoC-specific init From: Geert Uytterhoeven <geert+renesas@xxxxxxxxx> commit 3091ae775fae17084013021d01513bc1ad274e6a upstream. 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: 0c151062f32c9db8 ("sh-pfc: Add support for SoC-specific initialization") Signed-off-by: Geert Uytterhoeven <geert+renesas@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/pinctrl/sh-pfc/core.c | 3 +++ 1 file changed, 3 insertions(+) --- a/drivers/pinctrl/sh-pfc/core.c +++ b/drivers/pinctrl/sh-pfc/core.c @@ -586,6 +586,9 @@ static int sh_pfc_probe(struct platform_ 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 */ Patches currently in stable-queue which might be from geert+renesas@xxxxxxxxx are queue-4.9/pinctrl-sh-pfc-r8a7791-add-missing-hscif1-pinmux-data.patch queue-4.9/pinctrl-sh-pfc-r8a7794-swap-ata-signals.patch queue-4.9/pinctrl-sh-pfc-r8a7791-add-missing-dvc_mute-signal.patch queue-4.9/pinctrl-sh-pfc-update-info-pointer-after-soc-specific-init.patch queue-4.9/pinctrl-sh-pfc-r8a7791-fix-scif2-pinmux-data.patch queue-4.9/pinctrl-sh-pfc-r8a7795-fix-hscif2_clk_b-and-hscif4_ctrl.patch