cpu_device_id.h 294 B

1234567891011121314
  1. #ifndef _CPU_DEVICE_ID
  2. #define _CPU_DEVICE_ID 1
  3. /*
  4. * Declare drivers belonging to specific x86 CPUs
  5. * Similar in spirit to pci_device_id and related PCI functions
  6. */
  7. #include <linux/mod_devicetable.h>
  8. extern const struct x86_cpu_id *x86_match_cpu(const struct x86_cpu_id *match);
  9. #endif