Lines Matching defs:eth
388 "net_device for eth%d\n", n);
399 snprintf(dev->name, sizeof(dev->name), "eth%d", n);
546 static int check_transport(struct transport *transport, char *eth, int n,
552 if (strncmp(eth, transport->name, len))
555 eth += len;
556 if (*eth == ',')
557 eth++;
558 else if (*eth != '\0')
565 if (!transport->setup(eth, mac_out, *init_out)) {
575 struct eth_init *eth;
586 eth = list_entry(ele, struct eth_init, list);
587 match = check_transport(new, eth->init, eth->index, &init,
592 eth_configure(eth->index, init, mac, new, GFP_KERNEL);
595 list_del(ð->list);
651 __setup("eth", eth_setup);
653 "eth[0-9]+=<transport>,<options>\n"
716 .name = "eth",