device.h 293 B

12345678910111213141516
  1. #ifndef _ASM_X86_DEVICE_H
  2. #define _ASM_X86_DEVICE_H
  3. struct dev_archdata {
  4. #ifdef CONFIG_ACPI
  5. void *acpi_handle;
  6. #endif
  7. #ifdef CONFIG_X86_64
  8. struct dma_map_ops *dma_ops;
  9. #endif
  10. #ifdef CONFIG_DMAR
  11. void *iommu; /* hook for IOMMU specific extension */
  12. #endif
  13. };
  14. #endif /* _ASM_X86_DEVICE_H */