summaryrefslogtreecommitdiff
path: root/drivers/net/phy/mxl-gpy.c
diff options
context:
space:
mode:
authorMichael Walle <michael@walle.cc>2022-07-12 16:15:54 +0300
committerDavid S. Miller <davem@davemloft.net>2022-07-13 16:18:39 +0300
commitd523f2eb1dadb74d365365eb3bd921ad8b6b2abb (patch)
treefff910cdd083ca5b1214b5dbdfd0a9ada174b7c0 /drivers/net/phy/mxl-gpy.c
parent1e9aa7baf0965443350c8751f328bc671550d718 (diff)
downloadlinux-d523f2eb1dadb74d365365eb3bd921ad8b6b2abb.tar.xz
net: phy: mxl-gpy: print firmware in human readable form
Now having a major and a minor number, also print the firmware in human readable form "major.minor". Still keep the 4-digit hexadecimal representation because that form is used in the firmware changelog documents. Also, drop the "release" string assuming that most common case, but make it clearer that the user is running a test version. Signed-off-by: Michael Walle <michael@walle.cc> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/mxl-gpy.c')
-rw-r--r--drivers/net/phy/mxl-gpy.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/phy/mxl-gpy.c b/drivers/net/phy/mxl-gpy.c
index ac62b01c61ed..24bae27eedef 100644
--- a/drivers/net/phy/mxl-gpy.c
+++ b/drivers/net/phy/mxl-gpy.c
@@ -230,8 +230,9 @@ static int gpy_probe(struct phy_device *phydev)
return ret;
/* Show GPY PHY FW version in dmesg */
- phydev_info(phydev, "Firmware Version: 0x%04X (%s)\n", fw_version,
- (fw_version & PHY_FWV_REL_MASK) ? "release" : "test");
+ phydev_info(phydev, "Firmware Version: %d.%d (0x%04X%s)\n",
+ priv->fw_major, priv->fw_minor, fw_version,
+ fw_version & PHY_FWV_REL_MASK ? "" : " test version");
return 0;
}