diff options
author | Robert Marko <robert.marko@sartura.hr> | 2021-03-04 12:38:31 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2021-03-29 22:26:27 +0200 |
commit | da7ef7f41434f4f49f8f76319f8043135108b9c0 (patch) | |
tree | 3c47fafc077b77262bc8a5f5b2c0bf4d2c6aeba4 /target/linux | |
parent | 6b2bcd2597688484007349243ac4cd835b2a5cd2 (diff) | |
download | upstream-da7ef7f41434f4f49f8f76319f8043135108b9c0.tar.gz upstream-da7ef7f41434f4f49f8f76319f8043135108b9c0.tar.bz2 upstream-da7ef7f41434f4f49f8f76319f8043135108b9c0.zip |
ipq40xx: net: phy: qca807x: fix GPIO driver
While rebasing into setting bits instead of magic values,
I accidentally forgot to actually set the force bit.
Without it using the pins as GPIO-s did not actually work.
Fixes: b5c93ed ("ipq40xx: add Qualcomm QCA807x driver")
Signed-off-by: Robert Marko <robert.marko@sartura.hr>
(cherry picked from commit 7f2d9ccd09a1d3034aaf9c943747fc1631da5cac)
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/ipq40xx/files/drivers/net/phy/qca807x.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/ipq40xx/files/drivers/net/phy/qca807x.c b/target/linux/ipq40xx/files/drivers/net/phy/qca807x.c index 10d38d94a6..16d7a80455 100644 --- a/target/linux/ipq40xx/files/drivers/net/phy/qca807x.c +++ b/target/linux/ipq40xx/files/drivers/net/phy/qca807x.c @@ -356,6 +356,7 @@ static void qca807x_gpio_set(struct gpio_chip *gc, unsigned int offset, int valu val = phy_read_mmd(priv->phy, MDIO_MMD_AN, qca807x_gpio_get_reg(offset)); val &= ~QCA807X_GPIO_FORCE_MODE_MASK; + val |= QCA807X_GPIO_FORCE_EN; val |= FIELD_PREP(QCA807X_GPIO_FORCE_MODE_MASK, value); phy_write_mmd(priv->phy, MDIO_MMD_AN, qca807x_gpio_get_reg(offset), val); |