diff options
author | Tom Rini <trini@ti.com> | 2013-11-25 10:42:19 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-11-25 10:42:19 -0500 |
commit | 1a1326d2da9b2904bc90fb2990f829cb1ecef312 (patch) | |
tree | 79b47ce3f6bbc48974d305eedebd0e473dc9a33d /include/phy.h | |
parent | faca8ff55f4a2cf45fb906cc37f44601149fc00e (diff) | |
parent | 2287286be4e268d3d4ec3c0347bf31479dbd1f05 (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-net
Diffstat (limited to 'include/phy.h')
-rw-r--r-- | include/phy.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/phy.h b/include/phy.h index f0f522a9c2f..d3001f1381f 100644 --- a/include/phy.h +++ b/include/phy.h @@ -125,6 +125,9 @@ struct phy_driver { /* Called when bringing down the controller */ int (*shutdown)(struct phy_device *phydev); + int (*readext)(struct phy_device *phydev, int addr, int devad, int reg); + int (*writeext)(struct phy_device *phydev, int addr, int devad, int reg, + u16 val); struct list_head list; }; |