diff options
author | Colin Ian King <colin.king@canonical.com> | 2020-04-23 15:10:16 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-04-23 15:56:47 -0700 |
commit | efcd549da9d7e8194b4d2d2f35eff8ce7b4da684 (patch) | |
tree | 1b3f110abe02e227842b7b2c1d2e486bb344e84e /drivers/net | |
parent | 8ffe2df6426f874659a3aa1654f45ba83fa91f87 (diff) | |
download | linux-efcd549da9d7e8194b4d2d2f35eff8ce7b4da684.tar.gz linux-efcd549da9d7e8194b4d2d2f35eff8ce7b4da684.tar.bz2 linux-efcd549da9d7e8194b4d2d2f35eff8ce7b4da684.zip |
net: phy: bcm54140: fix less than zero comparison on an unsigned
Currently the unsigned variable tmp is being checked for an negative
error return from the call to bcm_phy_read_rdb and this can never
be true since tmp is unsigned. Fix this by making tmp a plain int.
Addresses-Coverity: ("Unsigned compared against 0")
Fixes: 4406d36dfdf1 ("net: phy: bcm54140: add hwmon support")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Michael Walle <michael@walle.cc>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/phy/bcm54140.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/phy/bcm54140.c b/drivers/net/phy/bcm54140.c index aa854477e06a..7341f0126cc4 100644 --- a/drivers/net/phy/bcm54140.c +++ b/drivers/net/phy/bcm54140.c @@ -191,7 +191,8 @@ out: static int bcm54140_hwmon_read_temp(struct device *dev, u32 attr, long *val) { struct phy_device *phydev = dev_get_drvdata(dev); - u16 reg, tmp; + u16 reg; + int tmp; switch (attr) { case hwmon_temp_input: @@ -224,7 +225,8 @@ static int bcm54140_hwmon_read_in(struct device *dev, u32 attr, int channel, long *val) { struct phy_device *phydev = dev_get_drvdata(dev); - u16 bit, reg, tmp; + u16 bit, reg; + int tmp; switch (attr) { case hwmon_in_input: |