diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2011-02-15 12:38:00 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2011-02-15 12:38:00 +0000 |
commit | 85199e9eb5b37db861964cc18570b6efed7f69ee (patch) | |
tree | 79fdb481b4d8ba2f0b852251201edd60852cc2ba /sys/dev | |
parent | e54a03b3928be4bf958f74806443df6f02df0054 (diff) |
Copy pasto in comment. Fix by brad@ OK dlg@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_nxe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_nxe.c b/sys/dev/pci/if_nxe.c index e7d24cce0da..ba30824f232 100644 --- a/sys/dev/pci/if_nxe.c +++ b/sys/dev/pci/if_nxe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_nxe.c,v 1.61 2010/05/19 15:27:35 oga Exp $ */ +/* $OpenBSD: if_nxe.c,v 1.62 2011/02/15 12:37:59 claudio Exp $ */ /* * Copyright (c) 2007 David Gwynne <dlg@openbsd.org> @@ -229,7 +229,7 @@ int nxedebug = 0; #define NXE_0_XG_CFG1_PAUSE_FR_DIS (1<<8) /* disable pause frame detect */ #define NXE_0_XG_CFG1_SEQ_ERR_EN (1<<10) /* enable seq err detection */ #define NXE_0_XG_CFG1_MULTICAST (1<<12) /* accept all multicast */ -#define NXE_0_XG_CFG1_PROMISC (1<<13) /* accept all multicast */ +#define NXE_0_XG_CFG1_PROMISC (1<<13) /* accept all frames */ #define NXE_0_XG_IPG(_p) (0x00670008 + _P(_p)) #define NXE_0_XG_MAC_LO(_p) (0x00670010 + _P(_p)) #define NXE_0_XG_MAC_HI(_p) (0x0067000c + _P(_p)) |