Date: Mon, 5 Feb 2018 20:30:54 +0000 (UTC) From: Adrian Chadd <adrian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r328900 - head/sys/dev/etherswitch/arswitch Message-ID: <201802052030.w15KUsjO056561@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adrian Date: Mon Feb 5 20:30:53 2018 New Revision: 328900 URL: https://svnweb.freebsd.org/changeset/base/328900 Log: [arswitch] fix build breakage. Apparently the last time I checked building this it didn't pick up that the header had changed. Modified: head/sys/dev/etherswitch/arswitch/arswitchreg.h Modified: head/sys/dev/etherswitch/arswitch/arswitchreg.h ============================================================================== --- head/sys/dev/etherswitch/arswitch/arswitchreg.h Mon Feb 5 19:06:34 2018 (r328899) +++ head/sys/dev/etherswitch/arswitch/arswitchreg.h Mon Feb 5 20:30:53 2018 (r328900) @@ -364,7 +364,7 @@ #define AR934X_REG_OPER_MODE1_PHY4_MII_EN (1 << 28) #define AR934X_REG_FLOOD_MASK 0x2c -#define AR934X_FLOOD_MASK_MC_DP(_p) (1 << (0 + (_p))) +#define AR934X_FLOOD_MASK_UC_DP(_p) (1 << (0 + (_p))) #define AR934X_FLOOD_MASK_MC_DP(_p) (1 << (16 + (_p))) #define AR934X_FLOOD_MASK_BC_DP(_p) (1 << (25 + (_p)))
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802052030.w15KUsjO056561>