summaryrefslogtreecommitdiffstats
path: root/sys/amd64/vmm/intel/vtd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/amd64/vmm/intel/vtd.c')
-rw-r--r--sys/amd64/vmm/intel/vtd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/vmm/intel/vtd.c b/sys/amd64/vmm/intel/vtd.c
index 3d7b495..a8f85c3 100644
--- a/sys/amd64/vmm/intel/vtd.c
+++ b/sys/amd64/vmm/intel/vtd.c
@@ -74,11 +74,11 @@ struct vtdmap {
#define VTD_GCR_WBF (1 << 27)
#define VTD_GCR_SRTP (1 << 30)
-#define VTD_GCR_TE (1 << 31)
+#define VTD_GCR_TE (1U << 31)
#define VTD_GSR_WBFS (1 << 27)
#define VTD_GSR_RTPS (1 << 30)
-#define VTD_GSR_TES (1 << 31)
+#define VTD_GSR_TES (1U << 31)
#define VTD_CCR_ICC (1UL << 63) /* invalidate context cache */
#define VTD_CCR_CIRG_GLOBAL (1UL << 61) /* global invalidation */
OpenPOWER on IntegriCloud