2006-11-11 13:18:39 +07:00
|
|
|
/*
|
|
|
|
* Arch specific extensions to struct device
|
|
|
|
*
|
|
|
|
* This file is released under the GPLv2
|
|
|
|
*/
|
2006-11-11 13:18:42 +07:00
|
|
|
#ifndef _ASM_IA64_DEVICE_H
|
|
|
|
#define _ASM_IA64_DEVICE_H
|
2006-11-11 13:18:39 +07:00
|
|
|
|
2006-11-11 13:18:42 +07:00
|
|
|
struct dev_archdata {
|
|
|
|
#ifdef CONFIG_ACPI
|
|
|
|
void *acpi_handle;
|
|
|
|
#endif
|
2011-08-24 07:05:25 +07:00
|
|
|
#ifdef CONFIG_INTEL_IOMMU
|
2008-10-18 02:14:13 +07:00
|
|
|
void *iommu; /* hook for IOMMU specific extension */
|
|
|
|
#endif
|
2006-11-11 13:18:42 +07:00
|
|
|
};
|
|
|
|
|
2009-07-08 18:21:31 +07:00
|
|
|
struct pdev_archdata {
|
|
|
|
};
|
|
|
|
|
2006-11-11 13:18:42 +07:00
|
|
|
#endif /* _ASM_IA64_DEVICE_H */
|