Lines Matching defs:info

1535 	struct velocity_rd_info *rd_info = &(vptr->rx.info[idx]);
1573 if (!vptr->rx.info[dirty].skb) {
1600 if (vptr->rx.info == NULL)
1604 struct velocity_rd_info *rd_info = &(vptr->rx.info[i]);
1619 kfree(vptr->rx.info);
1620 vptr->rx.info = NULL;
1634 vptr->rx.info = kcalloc(vptr->options.numrx,
1636 if (!vptr->rx.info)
2050 struct velocity_rd_info *rd_info = &(vptr->rx.info[idx]);
2116 if (!vptr->rx.info[rd_curr].skb)
2650 * @vptr: Velocity info
2651 * @info: Board type
2657 const struct velocity_info_tbl *info)
2659 vptr->chip_id = info->chip_id;
2660 vptr->tx.numq = info->txqueue;
2666 * velocity_get_pci_info - retrieve PCI info for device
2702 * velocity_get_platform_info - retrieve platform info for device
2753 * @info: table of match
2754 * @irq: interrupt info
2761 const struct velocity_info_tbl *info,
2796 velocity_init_info(vptr, info);
2833 vptr->options.flags &= info->flags;
2839 vptr->flags = vptr->options.flags | (info->flags & 0xFF000000UL);
2912 const struct velocity_info_tbl *info =
2926 ret = velocity_probe(&pdev->dev, pdev->irq, info, BUS_PCI);
2946 const struct velocity_info_tbl *info;
2949 info = of_device_get_match_data(&pdev->dev);
2950 if (!info)
2957 return velocity_probe(&pdev->dev, irq, info, BUS_PLATFORM);
3417 static void velocity_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
3421 strscpy(info->driver, VELOCITY_NAME, sizeof(info->driver));
3422 strscpy(info->version, VELOCITY_VERSION, sizeof(info->version));
3424 strscpy(info->bus_info, pci_name(vptr->pdev),
3425 sizeof(info->bus_info));
3427 strscpy(info->bus_info, "platform", sizeof(info->bus_info));