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 48E17C7EE24 for ; Fri, 2 Jun 2023 12:38:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235196AbjFBMi1 (ORCPT ); Fri, 2 Jun 2023 08:38:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41606 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235124AbjFBMi0 (ORCPT ); Fri, 2 Jun 2023 08:38:26 -0400 Received: from frasgout.his.huawei.com (frasgout.his.huawei.com [185.176.79.56]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8108FE46; Fri, 2 Jun 2023 05:38:10 -0700 (PDT) Received: from lhrpeml500005.china.huawei.com (unknown [172.18.147.201]) by frasgout.his.huawei.com (SkyGuard) with ESMTP id 4QXjG36YJmz6J777; Fri, 2 Jun 2023 20:38:03 +0800 (CST) Received: from localhost (10.202.227.76) by lhrpeml500005.china.huawei.com (7.191.163.240) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.23; Fri, 2 Jun 2023 13:38:07 +0100 Date: Fri, 2 Jun 2023 13:38:07 +0100 From: Jonathan Cameron To: Dave Jiang CC: , , "Rafael J. Wysocki" , Len Brown , , , , , Subject: Re: [PATCH v3 3/4] acpi: fix misnamed define for CDAT DSMAS Message-ID: <20230602133807.00000f60@Huawei.com> In-Reply-To: <168565512544.1098279.10448422511551990530.stgit@djiang5-mobl3> References: <168565502116.1098279.131831312990693128.stgit@djiang5-mobl3> <168565512544.1098279.10448422511551990530.stgit@djiang5-mobl3> Organization: Huawei Technologies Research and Development (UK) Ltd. X-Mailer: Claws Mail 4.1.0 (GTK 3.24.33; x86_64-w64-mingw32) MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.202.227.76] X-ClientProxiedBy: lhrpeml500004.china.huawei.com (7.191.163.9) To lhrpeml500005.china.huawei.com (7.191.163.240) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-cxl@vger.kernel.org On Thu, 01 Jun 2023 14:32:05 -0700 Dave Jiang wrote: > ACPI_CEDT_DSMAS_NON_VOLATILE should be defined as > ACPI_CDAT_DSMAS_NON_VOLATILE. Fix misspelled define. > > Links: https://github.com/acpica/acpica/pull/874 > Cc: Rafael J. Wysocki > Cc: Len Brown > Signed-off-by: Dave Jiang Given question of acpica addressed by your link above Reviewed-by: Jonathan Cameron > > --- > --- > include/acpi/actbl1.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/acpi/actbl1.h b/include/acpi/actbl1.h > index 58b0490a2ad1..8d5572ad48cb 100644 > --- a/include/acpi/actbl1.h > +++ b/include/acpi/actbl1.h > @@ -402,7 +402,7 @@ struct acpi_cdat_dsmas { > > /* Flags for subtable above */ > > -#define ACPI_CEDT_DSMAS_NON_VOLATILE (1 << 2) > +#define ACPI_CDAT_DSMAS_NON_VOLATILE (1 << 2) > > /* Subtable 1: Device scoped Latency and Bandwidth Information Structure (DSLBIS) */ > > >