aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorRadu Pirea (NXP OSS) <radu-nicolae.pirea@oss.nxp.com>2021-04-20 16:11:33 +0300
committerDavid S. Miller <davem@davemloft.net>2021-04-20 16:58:46 -0700
commit6b3a63100dedfa1f0887eb316110d5d7b0c51ed4 (patch)
treef068db2d4f8a2f06eacfd2f57165e0719b2b54b2
parentnet: enetc: automatically select IERB module (diff)
downloadwireguard-linux-6b3a63100dedfa1f0887eb316110d5d7b0c51ed4.tar.xz
wireguard-linux-6b3a63100dedfa1f0887eb316110d5d7b0c51ed4.zip
phy: nxp-c45-tja11xx: fix phase offset calculation
Fix phase offset calculation. Signed-off-by: Radu Pirea (NXP OSS) <radu-nicolae.pirea@oss.nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/phy/nxp-c45-tja11xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/nxp-c45-tja11xx.c b/drivers/net/phy/nxp-c45-tja11xx.c
index 47cacda8836f..95307097ebff 100644
--- a/drivers/net/phy/nxp-c45-tja11xx.c
+++ b/drivers/net/phy/nxp-c45-tja11xx.c
@@ -354,7 +354,7 @@ static u64 nxp_c45_get_phase_shift(u64 phase_offset_raw)
* and get 1 decimal point precision.
*/
phase_offset_raw *= 10;
- phase_offset_raw -= phase_offset_raw;
+ phase_offset_raw -= 738;
return div_u64(phase_offset_raw, 9);
}