[PATCH 2/5] net: eth: open correct edev in eth_check_open
Sascha Hauer
s.hauer at pengutronix.de
Fri Jul 15 00:23:06 PDT 2016
eth_check_open gets the network device to check as parameter, so
use it rather than using eth_current. Currently both are the same,
so this currently does not fix anything.
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
net/eth.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/eth.c b/net/eth.c
index fb3f22f..6bec154 100644
--- a/net/eth.c
+++ b/net/eth.c
@@ -228,7 +228,7 @@ static int eth_check_open(struct eth_device *edev)
if (edev->active)
return 0;
- ret = edev->open(eth_current);
+ ret = edev->open(edev);
if (ret)
return ret;
--
2.8.1
More information about the barebox
mailing list