svn commit: r280253 - head/sys/x86/iommu

Konstantin Belousov kib at FreeBSD.org
Thu Mar 19 13:03:59 UTC 2015


Author: kib
Date: Thu Mar 19 13:03:58 2015
New Revision: 280253
URL: https://svnweb.freebsd.org/changeset/base/280253

Log:
  Fix syntax error.
  
  Review:	https://reviews.freebsd.org/D1892
  Found by:	neel
  Sponsored by:	The FreeBSD Foundation
  MFC after:	3 days

Modified:
  head/sys/x86/iommu/intel_reg.h

Modified: head/sys/x86/iommu/intel_reg.h
==============================================================================
--- head/sys/x86/iommu/intel_reg.h	Thu Mar 19 13:00:02 2015	(r280252)
+++ head/sys/x86/iommu/intel_reg.h	Thu Mar 19 13:03:58 2015	(r280253)
@@ -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-head mailing list