From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim Harvey Date: Thu, 25 Mar 2021 17:07:37 -0700 Subject: [PATCH 6/6] net: octeontx: smi: fix mii probe In-Reply-To: <20210326000737.9764-1-tharvey@gateworks.com> References: <20210326000737.9764-1-tharvey@gateworks.com> Message-ID: <20210326000737.9764-7-tharvey@gateworks.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The fdt node offset is apparently not set properly when probed causing no MDIO busses to be found. Fix this by obtaining the offset. Signed-off-by: Tim Harvey --- drivers/net/octeontx/smi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/octeontx/smi.c b/drivers/net/octeontx/smi.c index 91dcd05e4b..27f4423c6a 100644 --- a/drivers/net/octeontx/smi.c +++ b/drivers/net/octeontx/smi.c @@ -325,6 +325,8 @@ int octeontx_smi_probe(struct udevice *dev) return -1; } + node = fdt_node_offset_by_compatible(gd->fdt_blob, -1, + "cavium,thunder-8890-mdio-nexus"); fdt_for_each_subnode(subnode, gd->fdt_blob, node) { ret = fdt_node_check_compatible(gd->fdt_blob, subnode, "cavium,thunder-8890-mdio"); -- 2.17.1