svn commit: r198967 - head/sys/dev/bge
Pyun YongHyeon
yongari at FreeBSD.org
Fri Nov 6 01:12:01 UTC 2009
Author: yongari
Date: Fri Nov 6 01:11:59 2009
New Revision: 198967
URL: http://svn.freebsd.org/changeset/base/198967
Log:
Correct MSI mode register bits.
Modified:
head/sys/dev/bge/if_bgereg.h
Modified: head/sys/dev/bge/if_bgereg.h
==============================================================================
--- head/sys/dev/bge/if_bgereg.h Fri Nov 6 00:03:48 2009 (r198966)
+++ head/sys/dev/bge/if_bgereg.h Fri Nov 6 01:11:59 2009 (r198967)
@@ -1705,11 +1705,8 @@
/* MSI mode register */
#define BGE_MSIMODE_RESET 0x00000001
#define BGE_MSIMODE_ENABLE 0x00000002
-#define BGE_MSIMODE_PCI_TGT_ABRT_ATTN 0x00000004
-#define BGE_MSIMODE_PCI_MSTR_ABRT_ATTN 0x00000008
-#define BGE_MSIMODE_PCI_PERR_ATTN 0x00000010
-#define BGE_MSIMODE_MSI_FIFOUFLOW_ATTN 0x00000020
-#define BGE_MSIMODE_MSI_FIFOOFLOW_ATTN 0x00000040
+#define BGE_MSIMODE_ONE_SHOT_DISABLE 0x00000020
+#define BGE_MSIMODE_MULTIVEC_ENABLE 0x00000080
/* MSI status register */
#define BGE_MSISTAT_PCI_TGT_ABRT_ATTN 0x00000004
More information about the svn-src-head
mailing list