]> git.sur5r.net Git - u-boot/blobdiff - net/eth-uclass.c
net: Only access network devices after init
[u-boot] / net / eth-uclass.c
index d30b04ba862a8b90d370b97116a7683c1d752f36..240b5965345543ff679ae925a2401f9c254b6e8b 100644 (file)
@@ -336,7 +336,7 @@ int eth_send(void *packet, int length)
        if (!current)
                return -ENODEV;
 
-       if (!device_active(current))
+       if (!eth_is_active(current))
                return -EINVAL;
 
        ret = eth_get_ops(current)->send(current, packet, length);
@@ -359,7 +359,7 @@ int eth_rx(void)
        if (!current)
                return -ENODEV;
 
-       if (!device_active(current))
+       if (!eth_is_active(current))
                return -EINVAL;
 
        /* Process up to 32 packets at one time */