Lines Matching defs:eth
389 "net_device for eth%d\n", n);
400 snprintf(dev->name, sizeof(dev->name), "eth%d", n);
547 static int check_transport(struct transport *transport, char *eth, int n,
553 if (strncmp(eth, transport->name, len))
556 eth += len;
557 if (*eth == ',')
558 eth++;
559 else if (*eth != '\0')
566 if (!transport->setup(eth, mac_out, *init_out)) {
576 struct eth_init *eth;
587 eth = list_entry(ele, struct eth_init, list);
588 match = check_transport(new, eth->init, eth->index, &init,
593 eth_configure(eth->index, init, mac, new, GFP_KERNEL);
596 list_del(ð->list);
652 __setup("eth", eth_setup);
654 "eth[0-9]+=<transport>,<options>\n"
717 .name = "eth",