bgmac: return error on failed PHY write
authorRafał Miłecki <zajec5@gmail.com>
Tue, 12 Feb 2013 23:14:51 +0000 (23:14 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 13 Feb 2013 18:58:18 +0000 (13:58 -0500)
Some callers may want to know if PHY write succeed. Also make PHY
functions static, they are not exported anywhere.

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/broadcom/bgmac.c
drivers/net/ethernet/broadcom/bgmac.h

index 7bc8017ccf47441ca1b614a848ae11b783977e35..52d9a544c8ca374855df02155a097dc96b69761c 100644 (file)
@@ -535,7 +535,7 @@ static void bgmac_dma_init(struct bgmac *bgmac)
  * PHY ops
  **************************************************/
 
-u16 bgmac_phy_read(struct bgmac *bgmac, u8 phyaddr, u8 reg)
+static u16 bgmac_phy_read(struct bgmac *bgmac, u8 phyaddr, u8 reg)
 {
        struct bcma_device *core;
        u16 phy_access_addr;
@@ -584,7 +584,7 @@ u16 bgmac_phy_read(struct bgmac *bgmac, u8 phyaddr, u8 reg)
 }
 
 /* http://bcm-v4.sipsolutions.net/mac-gbit/gmac/chipphywr */
-void bgmac_phy_write(struct bgmac *bgmac, u8 phyaddr, u8 reg, u16 value)
+static int bgmac_phy_write(struct bgmac *bgmac, u8 phyaddr, u8 reg, u16 value)
 {
        struct bcma_device *core;
        u16 phy_access_addr;
@@ -617,9 +617,13 @@ void bgmac_phy_write(struct bgmac *bgmac, u8 phyaddr, u8 reg, u16 value)
        tmp |= value;
        bcma_write32(core, phy_access_addr, tmp);
 
-       if (!bgmac_wait_value(core, phy_access_addr, BGMAC_PA_START, 0, 1000))
+       if (!bgmac_wait_value(core, phy_access_addr, BGMAC_PA_START, 0, 1000)) {
                bgmac_err(bgmac, "Writing to PHY %d register 0x%X failed\n",
                          phyaddr, reg);
+               return -ETIMEDOUT;
+       }
+
+       return 0;
 }
 
 /* http://bcm-v4.sipsolutions.net/mac-gbit/gmac/chipphyforce */
index 3dd6f6f7a0988c97270bfe8ae2bd84abf9ecae64..4ede614c81f8d5955d81bb4a06a636fdc8cb65da 100644 (file)
@@ -450,7 +450,4 @@ static inline void bgmac_set(struct bgmac *bgmac, u16 offset, u32 set)
        bgmac_maskset(bgmac, offset, ~0, set);
 }
 
-u16 bgmac_phy_read(struct bgmac *bgmac, u8 phyaddr, u8 reg);
-void bgmac_phy_write(struct bgmac *bgmac, u8 phyaddr, u8 reg, u16 value);
-
 #endif /* _BGMAC_H */