]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - common/spl/spl_net.c
net: Remove the bd* parameter from net stack functions
[karo-tx-uboot.git] / common / spl / spl_net.c
index ff53705926ace68ec37d001b942090303d077ca4..af4952f680df29c35be680c8498299186e5e4d1f 100644 (file)
@@ -21,7 +21,7 @@ void spl_net_load_image(const char *device)
        env_relocate();
        setenv("autoload", "yes");
        load_addr = CONFIG_SYS_TEXT_BASE - sizeof(struct image_header);
-       rv = eth_initialize(gd->bd);
+       rv = eth_initialize();
        if (rv == 0) {
                printf("No Ethernet devices found\n");
                hang();