Home | History | Annotate | Download | only in net

Lines Matching refs:netdev

46  * @v netdev		Network device
53 static int eth_push ( struct net_device *netdev __unused,
69 * @v netdev Network device
76 static int eth_pull ( struct net_device *netdev __unused,
181 * @ret netdev Network device, or NULL
184 struct net_device *netdev;
186 netdev = alloc_netdev ( priv_size );
187 if ( netdev ) {
188 netdev->ll_protocol = &ethernet_protocol;
189 netdev->ll_broadcast = eth_broadcast;
190 netdev->max_pkt_len = ETH_FRAME_LEN;
192 return netdev;