From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:42410 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751659AbdGGNwm (ORCPT ); Fri, 7 Jul 2017 09:52:42 -0400 Subject: Patch "pinctrl: sh-pfc: Update info pointer after SoC-specific init" has been added to the 4.9-stable tree To: geert+renesas@glider.be, gregkh@linuxfoundation.org Cc: , From: Date: Fri, 07 Jul 2017 15:52:26 +0200 Message-ID: <1499435546243151@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: 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 know about it. >>From 3091ae775fae17084013021d01513bc1ad274e6a Mon Sep 17 00:00:00 2001 From: Geert Uytterhoeven Date: Thu, 9 Mar 2017 19:20:48 +0100 Subject: pinctrl: sh-pfc: Update info pointer after SoC-specific init From: Geert Uytterhoeven 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 Signed-off-by: Greg Kroah-Hartman --- 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@glider.be 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