2013-04-15 08:04:39

by Nicolas Ferre

[permalink] [raw]
Subject: [PATCH] net/macb: fix error return code in macb_probe()

Fix to return a negative error code from the error handling
case instead of 0, as returned elsewhere in this function.

Original-idea-by: <[email protected]>
Signed-off-by: Nicolas Ferre <[email protected]>
---
Hi,

This fix was written originally for at91_ether.c and I found it interesting
to adapt it to macb.
Thanks to Wei Yongjun for finding it.

Best regards,

drivers/net/ethernet/cadence/macb.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/cadence/macb.c b/drivers/net/ethernet/cadence/macb.c
index 7fd0e3e..6be513d 100644
--- a/drivers/net/ethernet/cadence/macb.c
+++ b/drivers/net/ethernet/cadence/macb.c
@@ -1602,9 +1602,9 @@ static int __init macb_probe(struct platform_device *pdev)
goto err_out_free_irq;
}

- if (macb_mii_init(bp) != 0) {
+ err = macb_mii_init(bp);
+ if (err)
goto err_out_unregister_netdev;
- }

platform_set_drvdata(pdev, dev);

--
1.8.0


2013-04-15 18:10:25

by David Miller

[permalink] [raw]
Subject: Re: [PATCH] net/macb: fix error return code in macb_probe()

From: Nicolas Ferre <[email protected]>
Date: Mon, 15 Apr 2013 10:04:33 +0200

> Fix to return a negative error code from the error handling
> case instead of 0, as returned elsewhere in this function.
>
> Original-idea-by: <[email protected]>
> Signed-off-by: Nicolas Ferre <[email protected]>

Applied.