1. NAME

pci_match_id - See if a pci device matches a given pci_id table

2. SYNOPSIS

const struct pci_device_id * pci_match_id(const struct pci_device_id *  ids , struct pci_dev *  dev );

3. ARGUMENTS

ids
    array of PCI device id structures to search in

dev
    the PCI device structure to match against.

4. 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.

Deprecated, donAqt use this as it will not catch any dynamic ids that a driver might want to check for.

5. COPYRIGHT