From patchwork Thu Jun 23 10:50:44 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?Q2zDqW1lbnQgTMOpZ2Vy?= X-Patchwork-Id: 584365 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 5F90FC43334 for ; Thu, 23 Jun 2022 10:52:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231448AbiFWKwK (ORCPT ); Thu, 23 Jun 2022 06:52:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49094 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231381AbiFWKwC (ORCPT ); Thu, 23 Jun 2022 06:52:02 -0400 Received: from relay4-d.mail.gandi.net (relay4-d.mail.gandi.net [217.70.183.196]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3D8EE4B42F; Thu, 23 Jun 2022 03:51:59 -0700 (PDT) Received: (Authenticated sender: clement.leger@bootlin.com) by mail.gandi.net (Postfix) with ESMTPSA id E13C4E001A; Thu, 23 Jun 2022 10:51:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1655981518; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=24+arAKJhTGIKfgrnJIiZ/9RG62zhef/20t26Jbq8Qs=; b=TDYzkiRWBxX0NL8q0DTTu/8bOwxD73E83l+t8uMK1NtOHcvg5aNHsdlt+ChwGFVe5ekQ70 ewAkv+/eQPBqzptFi3nBa2+D1HR9EwElYSKzt9+PacPGvk50if3hGKeT49jE4EFBi/SGSV jqmkMocV4MAXRxVYGx4Br1tF9Vm7xiGQZHmuRHfsil107eESMUSoXJS//rC/XlyQUny/gQ 190kxwQSdbc20rjGOEMu5I9KGTCmLPkKW3joN8Y6BcpIm5rZd4yrbvGlxIiBmMqpWDtOXM R83MKOs8IkohWqBtNfnIdDE40DUPtbVf6DmtB3P1uuJ6CtPXg0tKWJqpkjBqGA== From: =?utf-8?b?Q2zDqW1lbnQgTMOpZ2Vy?= To: Rob Herring , Frank Rowand Cc: =?utf-8?b?Q2zDqW1lbnQgTMOpZ2Vy?= , linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, Lizhi Hou , Allan Nielsen , Horatiu Vultur , Steen Hegelund , Thomas Petazzoni Subject: [PATCH v1 2/2] of: unittest: remove check for of_root Date: Thu, 23 Jun 2022 12:50:44 +0200 Message-Id: <20220623105044.152832-3-clement.leger@bootlin.com> X-Mailer: git-send-email 2.36.1 In-Reply-To: <20220623105044.152832-1-clement.leger@bootlin.com> References: <20220623105044.152832-1-clement.leger@bootlin.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Now that of_root node is always populated in of_core_init(), remove this manual tree creation and assume that the root node always exists. Signed-off-by: Clément Léger --- drivers/of/unittest.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c index 7f6bba18c515..a787d212c0f6 100644 --- a/drivers/of/unittest.c +++ b/drivers/of/unittest.c @@ -1469,16 +1469,6 @@ static int __init unittest_data_add(void) return -EINVAL; } - if (!of_root) { - of_root = unittest_data_node; - for_each_of_allnodes(np) - __of_attach_node_sysfs(np); - of_aliases = of_find_node_by_path("/aliases"); - of_chosen = of_find_node_by_path("/chosen"); - of_overlay_mutex_unlock(); - return 0; - } - EXPECT_BEGIN(KERN_INFO, "Duplicate name in testcase-data, renamed to \"duplicate-name#1\"");