diff options
author | Oleksij Rempel <o.rempel@pengutronix.de> | 2021-05-11 06:37:30 +0200 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2021-05-23 11:32:46 +0800 |
commit | 5fff104f04dca67eb099026e88234b0ed3f8cb27 (patch) | |
tree | 3b20964ee9db953e8d09e8d850ba25b08f7f583d /arch/arm/mach-imx | |
parent | 66e69d8849e9b0d54686ed12556c0e078e16e056 (diff) | |
download | linux-5fff104f04dca67eb099026e88234b0ed3f8cb27.tar.gz linux-5fff104f04dca67eb099026e88234b0ed3f8cb27.tar.bz2 linux-5fff104f04dca67eb099026e88234b0ed3f8cb27.zip |
ARM: imx6q: remove part of ar8031_phy_fixup()
This part of this fixup is overwritten by at803x_config_init() in
drivers/net/phy/at803x.c. No additional devicetree fixes are needed.
Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/mach-imx')
-rw-r--r-- | arch/arm/mach-imx/mach-imx6q.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/arm/mach-imx/mach-imx6q.c b/arch/arm/mach-imx/mach-imx6q.c index 78205f90da27..1abefe7e1c3a 100644 --- a/arch/arm/mach-imx/mach-imx6q.c +++ b/arch/arm/mach-imx/mach-imx6q.c @@ -82,12 +82,6 @@ static int ar8031_phy_fixup(struct phy_device *dev) val |= 0x18; phy_write(dev, 0xe, val); - /* introduce tx clock delay */ - phy_write(dev, 0x1d, 0x5); - val = phy_read(dev, 0x1e); - val |= 0x0100; - phy_write(dev, 0x1e, val); - return 0; } |