Forgot one part of the VLAN support for the dc(4) driver.

Pointed out by: Shin-ichi YOSHIMOTO <yosimoto@waishi.jp>
This commit is contained in:
Doug Ambrisko 2002-01-16 21:34:11 +00:00
parent b5c93a560d
commit 45fe21a0a2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=89436
2 changed files with 4 additions and 0 deletions

View File

@ -400,6 +400,7 @@ struct dc_desc {
#define DC_RXSTAT_FIFOOFLOW 0x00000001
#define DC_RXSTAT_CRCERR 0x00000002
#define DC_RXSTAT_DRIBBLE 0x00000004
#define DC_RXSTAT_MIIERE 0x00000008
#define DC_RXSTAT_WATCHDOG 0x00000010
#define DC_RXSTAT_FRAMETYPE 0x00000020 /* 0 == IEEE 802.3 */
#define DC_RXSTAT_COLLSEEN 0x00000040
@ -409,6 +410,7 @@ struct dc_desc {
#define DC_RXSTAT_MULTICAST 0x00000400
#define DC_RXSTAT_RUNT 0x00000800
#define DC_RXSTAT_RXTYPE 0x00003000
#define DC_RXSTAT_DE 0x00004000
#define DC_RXSTAT_RXERR 0x00008000
#define DC_RXSTAT_RXLEN 0x3FFF0000
#define DC_RXSTAT_OWN 0x80000000

View File

@ -400,6 +400,7 @@ struct dc_desc {
#define DC_RXSTAT_FIFOOFLOW 0x00000001
#define DC_RXSTAT_CRCERR 0x00000002
#define DC_RXSTAT_DRIBBLE 0x00000004
#define DC_RXSTAT_MIIERE 0x00000008
#define DC_RXSTAT_WATCHDOG 0x00000010
#define DC_RXSTAT_FRAMETYPE 0x00000020 /* 0 == IEEE 802.3 */
#define DC_RXSTAT_COLLSEEN 0x00000040
@ -409,6 +410,7 @@ struct dc_desc {
#define DC_RXSTAT_MULTICAST 0x00000400
#define DC_RXSTAT_RUNT 0x00000800
#define DC_RXSTAT_RXTYPE 0x00003000
#define DC_RXSTAT_DE 0x00004000
#define DC_RXSTAT_RXERR 0x00008000
#define DC_RXSTAT_RXLEN 0x3FFF0000
#define DC_RXSTAT_OWN 0x80000000