pci-dynids.h 324 B

123456789101112131415161718
  1. /*
  2. * PCI defines and function prototypes
  3. * Copyright 2003 Dell Inc.
  4. * by Matt Domsch <Matt_Domsch@dell.com>
  5. */
  6. #ifndef LINUX_PCI_DYNIDS_H
  7. #define LINUX_PCI_DYNIDS_H
  8. #include <linux/list.h>
  9. #include <linux/mod_devicetable.h>
  10. struct dynid {
  11. struct list_head node;
  12. struct pci_device_id id;
  13. };
  14. #endif