diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2009-12-18 23:16:10 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-12-18 23:16:10 -0500 |
commit | 5ee6f6a17cfde9c3141e4d57cf88b5cdf638b463 (patch) | |
tree | 65a6fc290098b6e6b06f9f721ed7e52d62c53575 /drivers/net/phy | |
parent | db94ce90d3d571c11637a912cc39cfb80df3879c (diff) |
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/net/phy')
-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 f63c96a4ecb4..c13cf64095b6 100644 --- a/drivers/net/phy/broadcom.c +++ b/drivers/net/phy/broadcom.c | |||
@@ -326,7 +326,8 @@ error: | |||
326 | 326 | ||
327 | static void bcm54xx_adjust_rxrefclk(struct phy_device *phydev) | 327 | static void bcm54xx_adjust_rxrefclk(struct phy_device *phydev) |
328 | { | 328 | { |
329 | u32 val, orig; | 329 | u32 orig; |
330 | int val; | ||
330 | bool clk125en = true; | 331 | bool clk125en = true; |
331 | 332 | ||
332 | /* Abort if we are using an untested phy. */ | 333 | /* Abort if we are using an untested phy. */ |