.TH "pci_match_device" 9 "pci_match_device" "25 May 1998" "Kernel Hacker's Manual" LINUX .SH NAME pci_match_device \- Tell if a PCI device structure has a matching PCI device id structure .SH SYNOPSIS .B "const struct pci_device_id *" pci_match_device .BI "(const struct pci_device_id *" ids "," .BI "const struct pci_dev *" dev ");" .SH ARGUMENTS .IP "ids" 12 array of PCI device id structures to search in .IP "dev" 12 the PCI device structure to match against .SH "DESCRIPTION" Used by a driver to check whether a PCI device present in the system is in its list of supported devices.Returns the matching pci_device_id structure or NULL if there is no match.