device.h 326 B

12345678910111213141516
  1. #ifndef _ASM_X86_DEVICE_H
  2. #define _ASM_X86_DEVICE_H
  3. struct dev_archdata {
  4. #ifdef CONFIG_X86_DEV_DMA_OPS
  5. struct dma_map_ops *dma_ops;
  6. #endif
  7. #if defined(CONFIG_INTEL_IOMMU) || defined(CONFIG_AMD_IOMMU)
  8. void *iommu; /* hook for IOMMU specific extension */
  9. #endif
  10. };
  11. struct pdev_archdata {
  12. };
  13. #endif /* _ASM_X86_DEVICE_H */