diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-08-06 04:03:21 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-08-06 04:03:21 +0000 |
commit | 38e25de1d6d55463f37e3b3fb3d20e50364f7d9a (patch) | |
tree | 5c553a921ad99f3709dceb87da35b64be0c30559 /sys/arch | |
parent | ecaee713a228020b6b40b20b4ce437dfe18803db (diff) |
remove now unused board specific phy defines
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/armv7/imx/if_fec.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/sys/arch/armv7/imx/if_fec.c b/sys/arch/armv7/imx/if_fec.c index 1e9be366b2d..5ff8702c7ca 100644 --- a/sys/arch/armv7/imx/if_fec.c +++ b/sys/arch/armv7/imx/if_fec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_fec.c,v 1.13 2016/08/04 15:52:52 kettenis Exp $ */ +/* $OpenBSD: if_fec.c,v 1.14 2016/08/06 04:03:20 jsg Exp $ */ /* * Copyright (c) 2012-2013 Patrick Wildt <patrick@blueri.se> * @@ -137,17 +137,6 @@ #define ENET_MII_CLK 2500 #define ENET_ALIGNMENT 16 -#define ENET_HUMMINGBOARD_PHY_RST (3*32+15) -#define ENET_SABRELITE_PHY 6 -#define ENET_SABRELITE_PHY_RST (2*32+23) -#define ENET_SABRESD_PHY_RST (0*32+25) -#define ENET_NITROGEN6X_PHY_RST (0*32+27) -#define ENET_UDOO_PHY 6 -#define ENET_UDOO_PHY_RST (2*32+23) -#define ENET_UDOO_PWR (1*32+31) -#define ENET_NOVENA_PHY 7 -#define ENET_NOVENA_PHY_RST (2*32+23) - #define HREAD4(sc, reg) \ (bus_space_read_4((sc)->sc_iot, (sc)->sc_ioh, (reg))) #define HWRITE4(sc, reg, val) \ |