summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbz <bz@FreeBSD.org>2008-11-28 23:44:13 +0000
committerbz <bz@FreeBSD.org>2008-11-28 23:44:13 +0000
commit57874580d381e7e0d4e60e7461115b540f36a803 (patch)
treecd6a4e1892b07ba52d984b62b93763c0c1924f22
parentf46a041ed8f1e49b196ed797e8e993bcb2e22dcb (diff)
downloadFreeBSD-src-57874580d381e7e0d4e60e7461115b540f36a803.zip
FreeBSD-src-57874580d381e7e0d4e60e7461115b540f36a803.tar.gz
Renamed the FRAMELEN macro to TRUEPHY_FRAMELEN as for powerpc
it seems to be possible to collide with FRAMELEN from machine/frame.h. Found by: zec
-rw-r--r--sys/dev/mii/truephy.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/mii/truephy.c b/sys/dev/mii/truephy.c
index f5de6c4..4eba9d9 100644
--- a/sys/dev/mii/truephy.c
+++ b/sys/dev/mii/truephy.c
@@ -57,7 +57,8 @@
#include "miibus_if.h"
-#define FRAMELEN(mtu) (ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN + (mtu) + ETHER_CRC_LEN)
+#define TRUEPHY_FRAMELEN(mtu) \
+ (ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN + (mtu) + ETHER_CRC_LEN)
static int truephy_service(struct mii_softc *, struct mii_data *, int);
static int truephy_attach(device_t);
@@ -298,7 +299,7 @@ truephy_reset(struct mii_softc *sc)
mii_phy_reset(sc);
- if (FRAMELEN(sc->mii_pdata->mii_ifp->if_mtu) > 2048) {
+ if (TRUEPHY_FRAMELEN(sc->mii_pdata->mii_ifp->if_mtu) > 2048) {
int conf;
conf = PHY_READ(sc, TRUEPHY_CONF);
OpenPOWER on IntegriCloud