Lines Matching refs:info
821 struct rx_info *info = &dev->rx_info;
839 spin_lock_irqsave(&info->lock, flags);
840 if (!info->up)
844 next_rx = info->next_rx;
845 desc = info->next_rx_desc;
856 skb = info->skbs[next_rx];
857 info->skbs[next_rx] = NULL;
858 info->next_rx = (next_rx + 1) % NR_RX_DESC;
914 next_rx = info->next_rx;
915 desc = info->descs + (DESC_SIZE * next_rx);
917 info->next_rx = next_rx;
918 info->next_rx_desc = info->descs + (DESC_SIZE * next_rx);
925 spin_unlock_irqrestore(&info->lock, flags);
1110 /* fetch the vlan tag info out of the
1204 /* Let ethtool retrieve info */
1351 static void ns83820_get_drvinfo(struct net_device *ndev, struct ethtool_drvinfo *info)
1354 strscpy(info->driver, "ns83820", sizeof(info->driver));
1355 strscpy(info->version, VERSION, sizeof(info->version));
1356 strscpy(info->bus_info, pci_name(dev->pci_dev), sizeof(info->bus_info));