Lines Matching defs:mpi
163 const struct mlx_pci_ident *mpi, *maxmpi;
166 mpi = mlx_pci_ident;
167 maxmpi = mpi + sizeof(mlx_pci_ident) / sizeof(mlx_pci_ident[0]);
169 for (; mpi < maxmpi; mpi++) {
170 if (PCI_VENDOR(pa->pa_id) != mpi->mpi_vendor ||
171 PCI_PRODUCT(pa->pa_id) != mpi->mpi_product)
174 if (mpi->mpi_subvendor == 0x0000)
175 return (mpi);
179 if (PCI_VENDOR(reg) == mpi->mpi_subvendor &&
180 PCI_PRODUCT(reg) == mpi->mpi_subproduct)
181 return (mpi);
212 const struct mlx_pci_ident *mpi;
218 mpi = mlx_pci_findmpi(aux);
222 mlx->mlx_ci.ci_iftype = mpi->mpi_iftype;
224 printf(": Mylex RAID (v%d interface)\n", mpi->mpi_iftype);