From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A8485EB64DD for ; Fri, 23 Jun 2023 13:16:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231697AbjFWNQq (ORCPT ); Fri, 23 Jun 2023 09:16:46 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48744 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231177AbjFWNQm (ORCPT ); Fri, 23 Jun 2023 09:16:42 -0400 Received: from elvis.franken.de (elvis.franken.de [193.175.24.41]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 880202683; Fri, 23 Jun 2023 06:16:40 -0700 (PDT) Received: from uucp by elvis.franken.de with local-rmail (Exim 3.36 #1) id 1qCgeU-0002sj-00; Fri, 23 Jun 2023 15:16:38 +0200 Received: by alpha.franken.de (Postfix, from userid 1000) id 180D8C02FD; Fri, 23 Jun 2023 15:08:57 +0200 (CEST) Date: Fri, 23 Jun 2023 15:08:57 +0200 From: Thomas Bogendoerfer To: Shiji Yang Cc: linux-mips@vger.kernel.org, John Crispin , Sergio Paracuellos , linux-kernel@vger.kernel.org Subject: Re: [PATCH] mips: ralink: match all supported system controller compatible strings Message-ID: <20230623130856.GA11636@alpha.franken.de> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Jun 23, 2023 at 08:17:48AM +0800, Shiji Yang wrote: > Recently, A new clock and reset controller driver has been introduced to > the ralink mips target[1]. It provides proper system control and adds more > SoC specific compatible strings. In order to better initialize CPUs, this > patch removes the outdated "ralink,mt7620a-sysc" and add all dt-binding > documented compatible strings to the system controller match table. > > [1] https://lore.kernel.org/all/20230619040941.1340372-1-sergio.paracuellos@gmail.com/ > > Signed-off-by: Shiji Yang > --- > arch/mips/ralink/of.c | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/arch/mips/ralink/of.c b/arch/mips/ralink/of.c > index 53a2ae9ee..1c6c953d5 100644 > --- a/arch/mips/ralink/of.c > +++ b/arch/mips/ralink/of.c > @@ -40,10 +40,15 @@ static const struct of_device_id mtmips_memc_match[] = { > > static const struct of_device_id mtmips_sysc_match[] = { > { .compatible = "mediatek,mt7621-sysc" }, > - { .compatible = "ralink,mt7620a-sysc" }, > + { .compatible = "ralink,mt7620-sysc" }, > + { .compatible = "ralink,mt7628-sysc" }, > + { .compatible = "ralink,mt7688-sysc" }, > { .compatible = "ralink,rt2880-sysc" }, > { .compatible = "ralink,rt3050-sysc" }, > + { .compatible = "ralink,rt3052-sysc" }, > + { .compatible = "ralink,rt3352-sysc" }, > { .compatible = "ralink,rt3883-sysc" }, > + { .compatible = "ralink,rt5350-sysc" }, > {} > }; > > -- > 2.30.2 applied to mips-next. Thomas. -- Crap can work. Given enough thrust pigs will fly, but it's not necessarily a good idea. [ RFC1925, 2.3 ]