| 435 | } |
| 436 | |
| 437 | static bool |
| 438 | mlx5_bus_match(const struct mlx5_class_driver *drv, |
| 439 | const struct rte_device *dev) |
| 440 | { |
| 441 | if (mlx5_dev_is_pci(dev)) |
| 442 | return mlx5_dev_pci_match(drv, dev); |
| 443 | return true; |
| 444 | } |
| 445 | |
| 446 | static struct mlx5_common_device * |
| 447 | to_mlx5_device(const struct rte_device *rte_dev) |
no test coverage detected