diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2009-12-19 04:16:10 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-12-19 04:16:10 (GMT) |
commit | 5ee6f6a17cfde9c3141e4d57cf88b5cdf638b463 (patch) | |
tree | 65a6fc290098b6e6b06f9f721ed7e52d62c53575 /drivers | |
parent | db94ce90d3d571c11637a912cc39cfb80df3879c (diff) | |
download | linux-fsl-qoriq-5ee6f6a17cfde9c3141e4d57cf88b5cdf638b463.tar.xz |
broadcom: bcm54xx_shadow_read() errors ignored in bcm54xx_adjust_rxrefclk()
If not signed read errors are ignored.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Acked-by: Matt Carlson <mcarlson@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/phy/broadcom.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/phy/broadcom.c b/drivers/net/phy/broadcom.c index f63c96a..c13cf64 100644 --- a/drivers/net/phy/broadcom.c +++ b/drivers/net/phy/broadcom.c @@ -326,7 +326,8 @@ error: static void bcm54xx_adjust_rxrefclk(struct phy_device *phydev) { - u32 val, orig; + u32 orig; + int val; bool clk125en = true; /* Abort if we are using an untested phy. */ |