device.h 297 字节
Newer Older
H
H. Peter Anvin 已提交
1 2
#ifndef _ASM_X86_DEVICE_H
#define _ASM_X86_DEVICE_H
3 4 5 6

struct dev_archdata {
#ifdef CONFIG_ACPI
	void	*acpi_handle;
7
#endif
8 9 10
#ifdef CONFIG_X86_64
struct dma_mapping_ops *dma_ops;
#endif
11 12 13
#ifdef CONFIG_DMAR
	void *iommu; /* hook for IOMMU specific extension */
#endif
14 15
};

H
H. Peter Anvin 已提交
16
#endif /* _ASM_X86_DEVICE_H */