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 4622DC433EF for ; Mon, 11 Jul 2022 23:08:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231209AbiGKXIX (ORCPT ); Mon, 11 Jul 2022 19:08:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33126 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231183AbiGKXIV (ORCPT ); Mon, 11 Jul 2022 19:08:21 -0400 Received: from mail-io1-f44.google.com (mail-io1-f44.google.com [209.85.166.44]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 97C5E88776; Mon, 11 Jul 2022 16:08:20 -0700 (PDT) Received: by mail-io1-f44.google.com with SMTP id l24so6329083ion.13; Mon, 11 Jul 2022 16:08:20 -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:in-reply-to; bh=zxeI3PHxARnofEwCwPc7UJKNkPBUujUtjX7T02fdRTE=; b=ZdwBLGVdXsaZd81BTw4CVTl4EH59Oy8IpLGVYMUnQSeLCeKZx41N5Grnjn7V+6Jo4F HPCOFnpVG9RthNJ71JrVgvRFqqFU9NEIuyocJkX8YQgF9mYeoYfRmjdLp1xyTYsenVvj 659+WOcsgzi/hM3TtxwchK0mQCVBl9/Z9u/2M9q5gvqtpkdDa0kI5EbnHKc1IpY+jMXj NbCYzD5n44CCnYJY2yXEt8rpjpmmHFliANCFYi1uMhdsYvvCeAEpPRn4lDKHgb7KkJHa 5qyxnnQCSwWT+s38pi0FrV30suIt93zdzK8saCvAL4tI88mpwjGOaggGSZDJDpXWznN9 su+A== X-Gm-Message-State: AJIora/oSAWEndvb3QvIo90N98T1lVczcAiFK76PFx2JncoFR35ZFJYA ebE1WuALhTbhNUzFLaPxDw== X-Google-Smtp-Source: AGRyM1s3bAM9D4kuHyYfELQim8LOvE/a+WptFtkWi4E/UQYgphGHqVpb9+0rM3NLTNQgt7wsHF05NQ== X-Received: by 2002:a6b:c6:0:b0:678:e850:daa with SMTP id 189-20020a6b00c6000000b00678e8500daamr10642819ioa.104.1657580899905; Mon, 11 Jul 2022 16:08:19 -0700 (PDT) Received: from robh.at.kernel.org ([64.188.179.248]) by smtp.gmail.com with ESMTPSA id z12-20020a92d6cc000000b002dc1b9121ccsm3160251ilp.17.2022.07.11.16.08.18 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 11 Jul 2022 16:08:19 -0700 (PDT) Received: (nullmailer pid 441104 invoked by uid 1000); Mon, 11 Jul 2022 23:08:18 -0000 Date: Mon, 11 Jul 2022 17:08:18 -0600 From: Rob Herring To: Andy Shevchenko Cc: Linus Walleij , linux-gpio@vger.kernel.org, Frank Rowand , Bartosz Golaszewski , Frank Rowand , devicetree@vger.kernel.org, Rob Herring , linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 1/2] of: unittest: Switch to use fwnode instead of of_node Message-ID: <20220711230818.GA441024-robh@kernel.org> References: <20220708214539.7254-1-andriy.shevchenko@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220708214539.7254-1-andriy.shevchenko@linux.intel.com> Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org On Sat, 09 Jul 2022 00:45:38 +0300, Andy Shevchenko wrote: > The OF node in the GPIO library is deprecated and soon will be removed. > GPIO library now accepts fwnode as a firmware node, so switch the module > to use it instead. > > Signed-off-by: Andy Shevchenko > Reviewed-by: Bartosz Golaszewski > --- > v2: added tag (Bart), clarify the purpose in the commit message (Rob) > drivers/of/unittest.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > Applied, thanks!