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 C9CF4C43334 for ; Mon, 27 Jun 2022 17:19:39 +0000 (UTC) Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4LWvbt0Thfz3bvP for ; Tue, 28 Jun 2022 03:19:38 +1000 (AEST) Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gmail.com (client-ip=209.85.166.41; helo=mail-io1-f41.google.com; envelope-from=robherring2@gmail.com; receiver=) Received: from mail-io1-f41.google.com (mail-io1-f41.google.com [209.85.166.41]) (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 4LWvbM0Xk7z3bkP for ; Tue, 28 Jun 2022 03:19:10 +1000 (AEST) Received: by mail-io1-f41.google.com with SMTP id a10so10243554ioe.9 for ; Mon, 27 Jun 2022 10:19:10 -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=ZbXCZRn2tkLFwe+xZcXJJfs/8AzyxZ5b05h2ymqyzKo=; b=SfqP4dHVvNzNYWNC1ZCd/LnMs7KF1GnUNb0cwNbE/x+pyWgjXrYJwzu5d7HYGoqvHN m+8212r1VDFiHBOQfMajbiIEHXekW3gW6BvojxuvJBzPmuaXehtPGT4IKg0cMwR9PELx 0TMBp2+y4/TVP7YkiLh6QQs450mBYmjbLss8brwqljClwxetMkCkAoE5oTRUyYs54Wti k5C2T1bEQka1xp2tmEK4rOO58Ge40he0N/8t9TpXrN+nnYd0YzmnZ2LTLszGTmt7lEpd 0c//qWbZme8QFIprPvzSU/eyBTihFnD1mAUEo14lpDp6Hsqzskh9xaVMmgf3gORjKZ0n 2l/A== X-Gm-Message-State: AJIora9cCnYZt/JoRJ82TpUBSFw9vxNws1FJ/NUz+OU/gv0OgzlloVbl Zy/5eSlAwZ1RfG1vh2zuOA== X-Google-Smtp-Source: AGRyM1tu45zAsL+jIjvM+WaRtbHInJM639b0nwxc8mz53mtK5ZKqGi9kXi5EUH4/ZuQxDwX/kohBUQ== X-Received: by 2002:a6b:7711:0:b0:674:fcb2:1256 with SMTP id n17-20020a6b7711000000b00674fcb21256mr7103853iom.32.1656350347617; Mon, 27 Jun 2022 10:19:07 -0700 (PDT) Received: from robh.at.kernel.org ([64.188.179.253]) by smtp.gmail.com with ESMTPSA id bm13-20020a05663842cd00b0032ead96ee5csm4863972jab.165.2022.06.27.10.19.06 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 27 Jun 2022 10:19:07 -0700 (PDT) Received: (nullmailer pid 2614372 invoked by uid 1000); Mon, 27 Jun 2022 17:19:05 -0000 Date: Mon, 27 Jun 2022 11:19:05 -0600 From: Rob Herring To: =?iso-8859-1?Q?Cl=E9ment_L=E9ger?= Subject: Re: [PATCH v3 1/5] of: constify of_property_check_flags() prop argument Message-ID: <20220627171905.GA2612959-robh@kernel.org> References: <20220620104123.341054-1-clement.leger@bootlin.com> <20220620104123.341054-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: <20220620104123.341054-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 , Steen Hegelund , Daniel Henrique Barboza , YueHaibing , Bjorn Helgaas , Nathan Lynch , devicetree@vger.kernel.org, Allan Nielsen , Laurent Dufour , David Gibson , linux-kernel@vger.kernel.org, "Aneesh Kumar K.V" , 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 Mon, Jun 20, 2022 at 12:41:19PM +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(-) I already applied this patch, don't resend it. Rob