public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] nitrogen6x: Fix the error handling in board_eth_init()
@ 2015-09-11  3:53 Fabio Estevam
  2015-09-11  3:53 ` [U-Boot] [PATCH 2/2] ot1200: " Fabio Estevam
  2015-09-11 16:20 ` [U-Boot] [PATCH 1/2] nitrogen6x: " Troy Kisky
  0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2015-09-11  3:53 UTC (permalink / raw)
  To: u-boot

From: Fabio Estevam <fabio.estevam@freescale.com>

We should not return 0 on failure, so return a negative error code 
instead.

Also centralize the error path so that is easier to follow.

Cc: Troy Kisky <troy.kisky@boundarydevices.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/boundary/nitrogen6x/nitrogen6x.c | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/board/boundary/nitrogen6x/nitrogen6x.c b/board/boundary/nitrogen6x/nitrogen6x.c
index d46b8db..104d71f 100644
--- a/board/boundary/nitrogen6x/nitrogen6x.c
+++ b/board/boundary/nitrogen6x/nitrogen6x.c
@@ -387,20 +387,17 @@ int board_eth_init(bd_t *bis)
 #ifdef CONFIG_FEC_MXC
 	bus = fec_get_miibus(base, -1);
 	if (!bus)
-		return 0;
+		return -EINVAL;
 	/* scan phy 4,5,6,7 */
 	phydev = phy_find_by_mask(bus, (0xf << 4), PHY_INTERFACE_MODE_RGMII);
 	if (!phydev) {
-		free(bus);
-		return 0;
+		ret = -EINVAL;
+		goto free_bus;
 	}
 	printf("using phy@%d\n", phydev->addr);
 	ret  = fec_probe(bis, -1, base, bus, phydev);
-	if (ret) {
-		printf("FEC MXC: %s:failed\n", __func__);
-		free(phydev);
-		free(bus);
-	}
+	if (ret)
+		goto free_phydev;
 #endif
 
 #ifdef CONFIG_CI_UDC
@@ -408,6 +405,12 @@ int board_eth_init(bd_t *bis)
 	usb_eth_initialize(bis);
 #endif
 	return 0;
+
+free_phydev:
+	free(phydev);
+free_bus:
+	free(bus);
+	return ret;
 }
 
 static void setup_buttons(void)
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH 2/2] ot1200: Fix the error handling in board_eth_init()
  2015-09-11  3:53 [U-Boot] [PATCH 1/2] nitrogen6x: Fix the error handling in board_eth_init() Fabio Estevam
@ 2015-09-11  3:53 ` Fabio Estevam
  2015-09-11 16:20 ` [U-Boot] [PATCH 1/2] nitrogen6x: " Troy Kisky
  1 sibling, 0 replies; 3+ messages in thread
From: Fabio Estevam @ 2015-09-11  3:53 UTC (permalink / raw)
  To: u-boot

From: Fabio Estevam <fabio.estevam@freescale.com>

We should not return 0 on failure, so return a negative error code 
instead.

Also centralize the error path so that is easier to follow.

Cc: Christian Gmeiner <christian.gmeiner@gmail.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/bachmann/ot1200/ot1200.c | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)

diff --git a/board/bachmann/ot1200/ot1200.c b/board/bachmann/ot1200/ot1200.c
index 2237b7a..eeced79 100644
--- a/board/bachmann/ot1200/ot1200.c
+++ b/board/bachmann/ot1200/ot1200.c
@@ -305,13 +305,13 @@ int board_eth_init(bd_t *bis)
 
 	bus = fec_get_miibus(base, -1);
 	if (!bus)
-		return 0;
+		return -EINVAL;
 
 	/* scan phy 0 and 5 */
 	phydev = phy_find_by_mask(bus, 0x21, PHY_INTERFACE_MODE_RGMII);
 	if (!phydev) {
-		free(bus);
-		return 0;
+		ret = -EINVAL;
+		goto free_bus;
 	}
 
 	/* depending on the phy address we can detect our board version */
@@ -322,12 +322,16 @@ int board_eth_init(bd_t *bis)
 
 	printf("using phy at %d\n", phydev->addr);
 	ret = fec_probe(bis, -1, base, bus, phydev);
-	if (ret) {
-		printf("FEC MXC: %s:failed\n", __func__);
-		free(phydev);
-		free(bus);
-	}
+	if (ret)
+		goto free_phydev;
+
 	return 0;
+
+free_phydev:
+	free(phydev);
+free_bus:
+	free(bus);
+	return ret;
 }
 
 int board_init(void)
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH 1/2] nitrogen6x: Fix the error handling in board_eth_init()
  2015-09-11  3:53 [U-Boot] [PATCH 1/2] nitrogen6x: Fix the error handling in board_eth_init() Fabio Estevam
  2015-09-11  3:53 ` [U-Boot] [PATCH 2/2] ot1200: " Fabio Estevam
@ 2015-09-11 16:20 ` Troy Kisky
  1 sibling, 0 replies; 3+ messages in thread
From: Troy Kisky @ 2015-09-11 16:20 UTC (permalink / raw)
  To: u-boot

On 9/10/2015 8:53 PM, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> We should not return 0 on failure, so return a negative error code 
> instead.
> 
> Also centralize the error path so that is easier to follow.
> 
> Cc: Troy Kisky <troy.kisky@boundarydevices.com>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  board/boundary/nitrogen6x/nitrogen6x.c | 19 +++++++++++--------
>  1 file changed, 11 insertions(+), 8 deletions(-)

Acked-by: Troy Kisky <troy.kisky@boundarydevices.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-09-11 16:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-11  3:53 [U-Boot] [PATCH 1/2] nitrogen6x: Fix the error handling in board_eth_init() Fabio Estevam
2015-09-11  3:53 ` [U-Boot] [PATCH 2/2] ot1200: " Fabio Estevam
2015-09-11 16:20 ` [U-Boot] [PATCH 1/2] nitrogen6x: " Troy Kisky

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox