c4cd699010
so we don't ifdef for every arch in busdma_iommu.c; o No need to include specialreg.h for x86, remove it. Requested by: andrew Reviewed by: kib Sponsored by: DARPA/AFRL Differential Revision: https://reviews.freebsd.org/D25957
14 lines
253 B
C
14 lines
253 B
C
/*-
|
|
* This file is in the public domain.
|
|
*/
|
|
/* $FreeBSD$ */
|
|
|
|
#ifndef _MACHINE_IOMMU_H_
|
|
#define _MACHINE_IOMMU_H_
|
|
|
|
#include <x86/include/busdma_impl.h>
|
|
#include <x86/iommu/intel_reg.h>
|
|
#include <x86/iommu/intel_dmar.h>
|
|
|
|
#endif /* !_MACHINE_IOMMU_H_ */
|