svn commit: r280343 - stable/10/sys/x86/iommu

Konstantin Belousov kib at FreeBSD.org
Sun Mar 22 09:12:46 UTC 2015


Author: kib
Date: Sun Mar 22 09:12:44 2015
New Revision: 280343
URL: https://svnweb.freebsd.org/changeset/base/280343

Log:
  MFC r280253:
  Fix syntax error.

Modified:
  stable/10/sys/x86/iommu/intel_reg.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/x86/iommu/intel_reg.h
==============================================================================
--- stable/10/sys/x86/iommu/intel_reg.h	Sun Mar 22 09:09:26 2015	(r280342)
+++ stable/10/sys/x86/iommu/intel_reg.h	Sun Mar 22 09:12:44 2015	(r280343)
@@ -103,7 +103,7 @@ typedef struct dmar_irte {
 #define	DMAR_IRTE1_IM_POSTED	(1ULL << 15)	/* Posted */
 /* Delivery Mode */
 #define	DMAR_IRTE1_DLM_FM	(0ULL << 5)
-#define	DMAR_IRTE1_DLM_LP	(1ULL << 5
+#define	DMAR_IRTE1_DLM_LP	(1ULL << 5)
 #define	DMAR_IRTE1_DLM_SMI	(2ULL << 5)
 #define	DMAR_IRTE1_DLM_NMI	(4ULL << 5)
 #define	DMAR_IRTE1_DLM_INIT	(5ULL << 5)


More information about the svn-src-stable mailing list