diff mbox series

[U-Boot,1/8] net: tsec: Refactor the readout of the tbi-handle property

Message ID 20190623174818.12773-2-olteanv@gmail.com
State Superseded
Delegated to: Joe Hershberger
Headers show
Series NXP LS1021A-TSN Board | expand

Commit Message

Vladimir Oltean June 23, 2019, 5:48 p.m. UTC
The point of this patch is to eliminate the use of the locally-defined
"reg" variable (which interferes with next patch) and simplify the
fallback to the default CONFIG_SYS_TBIPA_VALUE in case "tbi-handle" is
missing.

Signed-off-by: Vladimir Oltean <olteanv@gmail.com>
---
 drivers/net/tsec.c | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

Comments

Joe Hershberger July 12, 2019, 6:58 p.m. UTC | #1
On Sun, Jun 23, 2019 at 12:50 PM Vladimir Oltean <olteanv@gmail.com> wrote:
>
> The point of this patch is to eliminate the use of the locally-defined
> "reg" variable (which interferes with next patch) and simplify the
> fallback to the default CONFIG_SYS_TBIPA_VALUE in case "tbi-handle" is
> missing.
>
> Signed-off-by: Vladimir Oltean <olteanv@gmail.com>

Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Bin Meng July 13, 2019, 4:54 a.m. UTC | #2
On Mon, Jun 24, 2019 at 1:50 AM Vladimir Oltean <olteanv@gmail.com> wrote:
>
> The point of this patch is to eliminate the use of the locally-defined
> "reg" variable (which interferes with next patch) and simplify the
> fallback to the default CONFIG_SYS_TBIPA_VALUE in case "tbi-handle" is
> missing.
>
> Signed-off-by: Vladimir Oltean <olteanv@gmail.com>
> ---
>  drivers/net/tsec.c | 15 +++++++--------
>  1 file changed, 7 insertions(+), 8 deletions(-)
>

Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
diff mbox series

Patch

diff --git a/drivers/net/tsec.c b/drivers/net/tsec.c
index 06a9b4fb03ce..53eb5470f4c8 100644
--- a/drivers/net/tsec.c
+++ b/drivers/net/tsec.c
@@ -798,6 +798,7 @@  int tsec_probe(struct udevice *dev)
 	struct eth_pdata *pdata = dev_get_platdata(dev);
 	struct fsl_pq_mdio_info mdio_info;
 	struct ofnode_phandle_args phandle_args;
+	u32 tbiaddr = CONFIG_SYS_TBIPA_VALUE;
 	ofnode parent;
 	const char *phy_mode;
 	int ret;
@@ -825,14 +826,12 @@  int tsec_probe(struct udevice *dev)
 		return -ENOENT;
 	}
 
-	if (dev_read_phandle_with_args(dev, "tbi-handle", NULL, 0, 0,
-				       &phandle_args)) {
-		priv->tbiaddr = CONFIG_SYS_TBIPA_VALUE;
-	} else {
-		int reg = ofnode_read_u32_default(phandle_args.node, "reg",
-						  CONFIG_SYS_TBIPA_VALUE);
-		priv->tbiaddr = reg;
-	}
+	ret = dev_read_phandle_with_args(dev, "tbi-handle", NULL, 0, 0,
+					 &phandle_args);
+	if (ret == 0)
+		ofnode_read_u32(phandle_args.node, "reg", &tbiaddr);
+
+	priv->tbiaddr = tbiaddr;
 
 	phy_mode = dev_read_prop(dev, "phy-connection-type", NULL);
 	if (phy_mode)