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 D4547C77B70 for ; Wed, 12 Apr 2023 02:52:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229631AbjDLCwS (ORCPT ); Tue, 11 Apr 2023 22:52:18 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48718 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229485AbjDLCwR (ORCPT ); Tue, 11 Apr 2023 22:52:17 -0400 Received: from fd01.gateway.ufhost.com (fd01.gateway.ufhost.com [61.152.239.71]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D649C4C12; Tue, 11 Apr 2023 19:52:15 -0700 (PDT) Received: from EXMBX165.cuchost.com (unknown [175.102.18.54]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "EXMBX165", Issuer "EXMBX165" (not verified)) by fd01.gateway.ufhost.com (Postfix) with ESMTP id 88A2680ED; Wed, 12 Apr 2023 10:52:14 +0800 (CST) Received: from EXMBX162.cuchost.com (172.16.6.72) by EXMBX165.cuchost.com (172.16.6.75) with Microsoft SMTP Server (TLS) id 15.0.1497.42; Wed, 12 Apr 2023 10:52:14 +0800 Received: from [192.168.125.82] (113.72.145.176) by EXMBX162.cuchost.com (172.16.6.72) with Microsoft SMTP Server (TLS) id 15.0.1497.42; Wed, 12 Apr 2023 10:52:13 +0800 Message-ID: <7a8aac88-91e1-3c54-efa6-e71ddd0951b4@starfivetech.com> Date: Wed, 12 Apr 2023 10:52:13 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.9.0 Subject: Re: [PATCH v1 2/7] soc: starfive: Replace SOC_STARFIVE with ARCH_SATRFIVE Content-Language: en-US To: Walker Chen , Rob Herring , Krzysztof Kozlowski , Emil Renner Berthing , Conor Dooley , Paul Walmsley , Palmer Dabbelt , Albert Ou CC: , , References: <20230411064743.273388-1-changhuang.liang@starfivetech.com> <20230411064743.273388-3-changhuang.liang@starfivetech.com> From: Changhuang Liang In-Reply-To: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Originating-IP: [113.72.145.176] X-ClientProxiedBy: EXCAS066.cuchost.com (172.16.6.26) To EXMBX162.cuchost.com (172.16.6.72) X-YovoleRuleAgent: yovoleflag Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On 2023/4/12 10:11, Walker Chen wrote: > > > On 2023/4/11 14:47, Changhuang Liang wrote: >> Using ARCH_FOO symbol is preferred than SOC_FOO. >> >> Signed-off-by: Changhuang Liang >> --- >> drivers/soc/starfive/Kconfig | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/drivers/soc/starfive/Kconfig b/drivers/soc/starfive/Kconfig >> index bdb96dc4c989..1e9b0c414fec 100644 >> --- a/drivers/soc/starfive/Kconfig >> +++ b/drivers/soc/starfive/Kconfig >> @@ -3,8 +3,8 @@ >> config JH71XX_PMU >> bool "Support PMU for StarFive JH71XX Soc" >> depends on PM >> - depends on SOC_STARFIVE || COMPILE_TEST >> - default SOC_STARFIVE >> + depends on ARCH_STARFIVE || COMPILE_TEST >> + default ARCH_STARFIVE >> select PM_GENERIC_DOMAINS >> help >> Say 'y' here to enable support power domain support. > > The subject 'ARCH_SATRFIVE' spelling error. > OK, will fix it. > Best regards, > Walker