From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 24 Jan 2022 12:21:58 +0100 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1nBxQ6-00Bopc-L8 for lore@lore.pengutronix.de; Mon, 24 Jan 2022 12:21:58 +0100 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1nBxQ5-0002Zw-27; Mon, 24 Jan 2022 12:21:57 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nBxQ3-0002Xd-6c; Mon, 24 Jan 2022 12:21:55 +0100 Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1nBxQ2-00C6vv-EL; Mon, 24 Jan 2022 12:21:53 +0100 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1nBxQ0-00CemI-MP; Mon, 24 Jan 2022 12:21:52 +0100 From: Michael Olbrich To: oss-tools@pengutronix.de Date: Mon, 24 Jan 2022 12:21:40 +0100 Message-Id: <20220124112143.3016473-2-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220124112143.3016473-1-m.olbrich@pengutronix.de> References: <20220124112143.3016473-1-m.olbrich@pengutronix.de> MIME-Version: 1.0 Subject: [OSS-Tools] [PATCH 1/4] state: support deep probe X-BeenThere: oss-tools@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: Pengutronix Public Open-Source-Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Olbrich Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "OSS-Tools" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: oss-tools-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false This ports the following barebox commit: |commit ac71031705cedd53570b8b0a4a6b63473f7127c3 |Author: Ahmad Fatoum |Date: Mon Jun 28 08:45:14 2021 +0200 | | state: support deep probe | | With deep probe, drivers registered before of_populate_initcall must | themselves take care to ensure their dependencies had a chance to probe. | | For barebox-state, this means the backend partition provider must be | probed. Do so by calling of_partition_ensure_probed on it. | | Signed-off-by: Ahmad Fatoum | Link: https://lore.barebox.org/20210628064517.28636-5-a.fatoum@pengutronix.de | Signed-off-by: Sascha Hauer Signed-off-by: Michael Olbrich --- src/barebox-state/state.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/barebox-state/state.c b/src/barebox-state/state.c index f528b3e19f21..363ac8a5d485 100644 --- a/src/barebox-state/state.c +++ b/src/barebox-state/state.c @@ -616,6 +616,10 @@ struct state *state_new_from_node(struct device_node *node, bool readonly) } #ifdef __BAREBOX__ + ret = of_partition_ensure_probed(partition_node); + if (ret) + goto out_release_state; + ret = of_find_path_by_node(partition_node, &state->backend_path, 0); #else ret = of_get_devicepath(partition_node, &state->backend_path, &offset, &size); -- 2.30.2 _______________________________________________ OSS-Tools mailing list OSS-Tools@pengutronix.de