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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id F28F5C61DA4 for ; Tue, 31 Jan 2023 03:03:26 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 03B478580B; Tue, 31 Jan 2023 04:03:25 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id 7C1C58580B; Tue, 31 Jan 2023 03:57:52 +0100 (CET) Received: from out30-112.freemail.mail.aliyun.com (out30-112.freemail.mail.aliyun.com [115.124.30.112]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 5E6AE85634 for ; Tue, 31 Jan 2023 03:57:49 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=jnhuang@linux.alibaba.com X-Alimail-AntiSpam: AC=PASS; BC=-1|-1; BR=01201311R591e4; CH=green; DM=||false|; DS=||; FP=0|-1|-1|-1|0|-1|-1|-1; HT=ay29a033018046056; MF=jnhuang@linux.alibaba.com; NM=1; PH=DS; RN=4; SR=0; TI=SMTPD_---0VaUevXk_1675133864; Received: from 30.221.128.249(mailfrom:jnhuang@linux.alibaba.com fp:SMTPD_---0VaUevXk_1675133864) by smtp.aliyun-inc.com; Tue, 31 Jan 2023 10:57:45 +0800 Message-ID: <88a3f06f-8c06-112b-5952-28cd673f138d@linux.alibaba.com> Date: Tue, 31 Jan 2023 10:57:42 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: [PATCH 096/171] Correct SPL use of FS_EROFS To: Simon Glass , U-Boot Mailing List Cc: Tom Rini , linux-erofs@lists.ozlabs.org References: <20230130144324.206208-1-sjg@chromium.org> <20230130144324.206208-97-sjg@chromium.org> From: Huang Jianan In-Reply-To: <20230130144324.206208-97-sjg@chromium.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Tue, 31 Jan 2023 04:03:23 +0100 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean 在 2023/1/30 22:42, Simon Glass 写道: > This converts 1 usage of this option to the non-SPL form, since there is > no SPL_FS_EROFS defined in Kconfig > > Signed-off-by: Simon Glass > --- > > fs/erofs/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/erofs/Makefile b/fs/erofs/Makefile > index 58af6a68e41..ef94d2db45d 100644 > --- a/fs/erofs/Makefile > +++ b/fs/erofs/Makefile > @@ -1,7 +1,7 @@ > # SPDX-License-Identifier: GPL-2.0+ > # > > -obj-$(CONFIG_$(SPL_)FS_EROFS) = fs.o \ > +obj-$(CONFIG_FS_EROFS) = fs.o \ > super.o \ > namei.o \ > data.o \ Looks good to me. Reviewed-by: Huang Jianan Thanks, Jianan