Re: [PATCH v6 1/2] net: mhi: Enable Ethernet interface support
Andrew Lunn <[email protected]>
| Newsgroups | dev.linux.lists.mhi,org.kernel.vger.linux-arm-msm,org.kernel.vger.linux-kernel,org.kernel.vger.netdev |
|---|---|
| Message-ID | <[email protected]> |
> ndev = alloc_netdev(sizeof(struct mhi_net_dev), info->netname, > - NET_NAME_PREDICTABLE, mhi_net_setup); > + NET_NAME_PREDICTABLE, info->ethernet_if ? > + mhi_ethernet_setup : mhi_net_setup); Is the name predictable? I thought "eth%d" was considered NET_NAME_ENUM? https://elixir.bootlin.com/linux/v6.18/source/net/ethernet/eth.c#L382 Andrew