Esempio n. 1
0
int
nfe_match(struct device *dev, void *match, void *aux)
{
	return pci_matchbyid((struct pci_attach_args *)aux, nfe_devices,
	    sizeof (nfe_devices) / sizeof (nfe_devices[0]));
}
Esempio n. 2
0
int
ti_pci_match(struct device *parent, void *match, void *aux)
{
	return (pci_matchbyid(aux, ti_devices, nitems(ti_devices)));
}
Esempio n. 3
0
int
cas_match(struct device *parent, void *cf, void *aux)
{
	return (pci_matchbyid((struct pci_attach_args *)aux, cas_pci_devices,
	    sizeof(cas_pci_devices)/sizeof(cas_pci_devices[0])));
}
Esempio n. 4
0
int
itherm_probe(struct device *parent, void *match, void *aux)
{
	return (pci_matchbyid((struct pci_attach_args *)aux, itherm_devices,
	    sizeof(itherm_devices)/sizeof(itherm_devices[0])));
}
Esempio n. 5
0
int
ichiic_match(struct device *parent, void *match, void *aux)
{
	return (pci_matchbyid(aux, ichiic_ids,
	    sizeof(ichiic_ids) / sizeof(ichiic_ids[0])));
}
Esempio n. 6
0
int
eap_match(struct device *parent, void *match, void *aux)
{
	return (pci_matchbyid((struct pci_attach_args *)aux, eap_devices,
	    nitems(eap_devices)));
}
Esempio n. 7
0
int
eap_match(struct device *parent, void *match, void *aux)
{
	return (pci_matchbyid((struct pci_attach_args *)aux, eap_devices,
	    sizeof(eap_devices)/sizeof(eap_devices[0])));
}
Esempio n. 8
0
int
gcu_probe(struct device *parent, void *match, void *aux)
{
	return (pci_matchbyid((struct pci_attach_args *)aux, gcu_devices,
	    nitems(gcu_devices)));
}
Esempio n. 9
0
int
amdpm_match(struct device *parent, void *match, void *aux)
{
	return (pci_matchbyid(aux, amdpm_ids,
	    sizeof(amdpm_ids) / sizeof(amdpm_ids[0])));
}
Esempio n. 10
0
int
sf_pci_match(struct device *parent, void *match, void *aux)
{
	return (pci_matchbyid((struct pci_attach_args *)aux, sf_pci_products,
	    sizeof(sf_pci_products)/sizeof(sf_pci_products[0])));
}
Esempio n. 11
0
static int
mtd_pci_match(struct device *parent, void *match, void *aux)
{
	return (pci_matchbyid((struct pci_attach_args *)aux, mtd_pci_devices,
	    sizeof(mtd_pci_devices) / sizeof(mtd_pci_devices[0])));
}
Esempio n. 12
0
int
rtw_pci_match(struct device *parent, void *match, void *aux)
{
	return (pci_matchbyid((struct pci_attach_args *)aux, rtw_pci_products,
	    nitems(rtw_pci_products)));
}
Esempio n. 13
0
int
pwdog_probe(struct device *parent, void *match, void *aux)
{
    return pci_matchbyid((struct pci_attach_args *)aux, pwdog_devices,
                         sizeof(pwdog_devices) / sizeof(pwdog_devices[0]));
}
Esempio n. 14
0
int
cs4280_match(struct device *parent, void *ma, void *aux) 
{
	return (pci_matchbyid((struct pci_attach_args *)aux, cs4280_devices,
	    nitems(cs4280_devices)));
}
Esempio n. 15
0
int
gem_match_pci(struct device *parent, void *cf, void *aux)
{
	return (pci_matchbyid((struct pci_attach_args *)aux, gem_pci_devices,
	    nitems(gem_pci_devices)));
}
Esempio n. 16
0
int
gem_match_pci(struct device *parent, void *cf, void *aux)
{
	return (pci_matchbyid((struct pci_attach_args *)aux, gem_pci_devices,
	    sizeof(gem_pci_devices)/sizeof(gem_pci_devices[0])));
}