From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751882AbcF0NVP (ORCPT ); Mon, 27 Jun 2016 09:21:15 -0400 Received: from mx07-00178001.pphosted.com ([62.209.51.94]:33274 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751671AbcF0NVO (ORCPT ); Mon, 27 Jun 2016 09:21:14 -0400 Subject: Re: [PATCH] ARM: STi: Update machine _namestr to be more generic. To: Peter Griffin , , , , References: <1462984816-705-1-git-send-email-peter.griffin@linaro.org> CC: From: Patrice Chotard Message-ID: <5771282C.2050202@st.com> Date: Mon, 27 Jun 2016 15:20:44 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.8.0 MIME-Version: 1.0 In-Reply-To: <1462984816-705-1-git-send-email-peter.griffin@linaro.org> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [10.48.1.66] X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2016-06-27_09:,, signatures=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Peter On 05/11/2016 06:40 PM, Peter Griffin wrote: > This string is used by dump_stack and as we now support > more SoC's than just STiH415/6 it is misleading to have > the current string in the stack trace. > > This patch updates it to be more generic for the STi > family of SoCs. > > So instead of looking like this > > [ 271.672555] Hardware name: STiH415/416 SoC with Flattened Device Tree > [ 271.678998] [] (unwind_backtrace) from [] (show_stack+0x10/0x14) > [ 271.686746] [] (show_stack) from [] (dump_stack+0x98/0xac) > [snip] > > it now looks like this: > > [ 2.669879] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.6.0-rc3-00026-g38a1ce6-dirty #76 > [ 2.677973] Hardware name: STi SoC with Flattened Device Tree > [ 2.683723] [] (unwind_backtrace) from [] (show_stack+0x10/0x14) > [ 2.691472] [] (show_stack) from [] (dump_stack+0x98/0xac) > [snip] > > Signed-off-by: Peter Griffin > --- > arch/arm/mach-sti/board-dt.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/mach-sti/board-dt.c b/arch/arm/mach-sti/board-dt.c > index ae10fb2..cfee0ef 100644 > --- a/arch/arm/mach-sti/board-dt.c > +++ b/arch/arm/mach-sti/board-dt.c > @@ -23,7 +23,7 @@ static const char *const stih41x_dt_match[] __initconst = { > NULL > }; > > -DT_MACHINE_START(STM, "STiH415/416 SoC with Flattened Device Tree") > +DT_MACHINE_START(STM, "STi SoC with Flattened Device Tree") > .dt_compat = stih41x_dt_match, > .l2c_aux_val = L2C_AUX_CTRL_SHARED_OVERRIDE | > L310_AUX_CTRL_DATA_PREFETCH | Acked-by: Patrice Chotard