aboutsummaryrefslogtreecommitdiff
path: root/drivers/net/mvneta.c
diff options
context:
space:
mode:
authorMarek BehĂșn <marek.behun@nic.cz>2022-04-27 12:42:00 +0200
committerStefan Roese <sr@denx.de>2022-05-04 07:05:51 +0200
commit38332211e3007ec18b66d9bcd4d56338953d88ab (patch)
tree990c86f5ed307ac79fd582026cde0ecd946057a4 /drivers/net/mvneta.c
parente06c7f34d2944a66ad0a8486f112ade610512f74 (diff)
downloadu-boot-38332211e3007ec18b66d9bcd4d56338953d88ab.zip
u-boot-38332211e3007ec18b66d9bcd4d56338953d88ab.tar.gz
u-boot-38332211e3007ec18b66d9bcd4d56338953d88ab.tar.bz2
net: mvneta: Drop fixed_link member from private struct
Since this member is checked only at two places drop it and inline it's usage. Signed-off-by: Marek BehĂșn <marek.behun@nic.cz> Reviewed-by: Ramon Fried <rfried.dev@gmail.com> Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'drivers/net/mvneta.c')
-rw-r--r--drivers/net/mvneta.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/net/mvneta.c b/drivers/net/mvneta.c
index 4917857..378789b 100644
--- a/drivers/net/mvneta.c
+++ b/drivers/net/mvneta.c
@@ -273,7 +273,6 @@ struct mvneta_port {
u16 rx_ring_size;
phy_interface_t phy_interface;
- bool fixed_link;
unsigned int link;
unsigned int duplex;
unsigned int speed;
@@ -813,7 +812,7 @@ static void mvneta_defaults_set(struct mvneta_port *pp)
mvreg_write(pp, MVNETA_SDMA_CONFIG, val);
/* Enable PHY polling in hardware if not in fixed-link mode */
- if (!pp->fixed_link) {
+ if (pp->phydev->phy_id != PHY_FIXED_ID) {
mvreg_write(pp, MVNETA_PHY_ADDR, pp->phydev->addr);
val = mvreg_read(pp, MVNETA_UNIT_CONTROL);
@@ -1173,7 +1172,7 @@ static void mvneta_adjust_link(struct udevice *dev)
* be added). Also, why is ADVERT_FC enabled if we don't enable
* inband AN at all?
*/
- if (pp->fixed_link)
+ if (pp->phydev->phy_id == PHY_FIXED_ID)
val = MVNETA_GMAC_FORCE_LINK_UP |
MVNETA_GMAC_IB_BYPASS_AN_EN |
MVNETA_GMAC_SET_FC_EN |
@@ -1431,8 +1430,6 @@ static int mvneta_start(struct udevice *dev)
return -ENODEV;
}
- pp->fixed_link = phydev->phy_id == PHY_FIXED_ID;
-
pp->phydev = phydev;
phy_config(phydev);
phy_startup(phydev);