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 lists.ozlabs.org (lists.ozlabs.org [112.213.38.117]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 1A633C43334 for ; Fri, 3 Jun 2022 20:24:52 +0000 (UTC) Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4LFDrg3pVFz3cD9 for ; Sat, 4 Jun 2022 06:24:51 +1000 (AEST) Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gmail.com (client-ip=209.85.167.172; helo=mail-oi1-f172.google.com; envelope-from=robherring2@gmail.com; receiver=) Received: from mail-oi1-f172.google.com (mail-oi1-f172.google.com [209.85.167.172]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4LFDrC5tlBz3bmH for ; Sat, 4 Jun 2022 06:24:27 +1000 (AEST) Received: by mail-oi1-f172.google.com with SMTP id r206so11800421oib.8 for ; Fri, 03 Jun 2022 13:24:26 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:content-transfer-encoding :in-reply-to; bh=LpgNDBdoP6t/KspsiFUK1Wc3xwi9X5pe8MvB3spUO50=; b=bT4n19Z9Z5e0VifEpCDsiF0tvEoHVFby5cCWbSJ8NEd9y8uM2sJYqRT/xwFGyOVUMx dKXljKJ32jTg8wwf41ZhLd6ad8kpHvvolxDAHafjtzp5R8EEJ6gcUzjqclCtqEuxcgkZ J4PHGHnzEcwgyES+a5ZNvw/mWAnmR3IuMoWa/+yvo/pV46bUKbvow1iGsIGMODJ0iYOH TVs+cXnEOcl/hKQ95cCkAoXrAn9eF5+31jriXUq/q27dcEP9+9HFPmwaes5gNB8xluod rvu0v133M1ls0Ld29PGJ7OnmTiMXHfbSgwmPra4kgJvPbUq/MRXS5g6qIWJwjdVCLxa8 2Iqg== X-Gm-Message-State: AOAM5336zXuxMUVHD0wp1cdp56XttaonD1ZLRA/3R4Ii7xZ7dXdf+sUe ZdMZyKSSfF/m3Rml2Um/5Q== X-Google-Smtp-Source: ABdhPJyAyekreTTcq3AklohCDOmKQVGg8+La0qAOOFzpP42Wl6yg4YtE9wkVWK6Zz4dB/w01fJ63Zg== X-Received: by 2002:a05:6808:2002:b0:32e:5e09:5201 with SMTP id q2-20020a056808200200b0032e5e095201mr1449575oiw.91.1654287864839; Fri, 03 Jun 2022 13:24:24 -0700 (PDT) Received: from robh.at.kernel.org (66-90-144-107.dyn.grandenetworks.net. [66.90.144.107]) by smtp.gmail.com with ESMTPSA id r26-20020a4ad4da000000b0041b5d2f3c92sm536552oos.24.2022.06.03.13.24.23 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 03 Jun 2022 13:24:24 -0700 (PDT) Received: (nullmailer pid 846852 invoked by uid 1000); Fri, 03 Jun 2022 20:24:22 -0000 Date: Fri, 3 Jun 2022 15:24:22 -0500 From: Rob Herring To: =?iso-8859-1?Q?Cl=E9ment_L=E9ger?= Subject: Re: [PATCH v2 1/4] of: constify of_property_check_flags() prop argument Message-ID: <20220603202422.GA845694-robh@kernel.org> References: <20220601081801.348571-1-clement.leger@bootlin.com> <20220601081801.348571-2-clement.leger@bootlin.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20220601081801.348571-2-clement.leger@bootlin.com> X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: David Hildenbrand , Paul Mackerras , Thomas Petazzoni , Ohhoon Kwon , Frank Rowand , Horatiu Vultur , "Aneesh Kumar K.V" , Steen Hegelund , Daniel Henrique Barboza , YueHaibing , Bjorn Helgaas , Nathan Lynch , devicetree@vger.kernel.org, Rob Herring , Allan Nielsen , Laurent Dufour , David Gibson , linux-kernel@vger.kernel.org, Andrew Morton , linuxppc-dev@lists.ozlabs.org, Lizhi Hou Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" On Wed, 01 Jun 2022 10:17:58 +0200, Clément Léger wrote: > This argument is not modified and thus can be set as const. > > Signed-off-by: Clément Léger > --- > include/linux/of.h | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > As this looks independent of the rest of the series, applied, thanks!