Commit 433c79eb authored by Volodymyr Bendiuga's avatar Volodymyr Bendiuga Committed by Thadeu Lima de Souza Cascardo

phy: increase size of MII_BUS_ID_SIZE and bus_id

BugLink: http://bugs.launchpad.net/bugs/1732698

[ Upstream commit 4567d686 ]

Some bus names are pretty long and do not fit into
17 chars. Increase therefore MII_BUS_ID_SIZE and
phy_fixup.bus_id to larger number. Now mii_bus.id
can host larger name.
Signed-off-by: default avatarVolodymyr Bendiuga <volodymyr.bendiuga@gmail.com>
Signed-off-by: default avatarMagnus Öberg <magnus.oberg@westermo.se>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarSasha Levin <alexander.levin@verizon.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarStefan Bader <stefan.bader@canonical.com>
Signed-off-by: default avatarThadeu Lima de Souza Cascardo <cascardo@canonical.com>
parent 9486b746
...@@ -136,11 +136,7 @@ static inline const char *phy_modes(phy_interface_t interface) ...@@ -136,11 +136,7 @@ static inline const char *phy_modes(phy_interface_t interface)
/* Used when trying to connect to a specific phy (mii bus id:phy device id) */ /* Used when trying to connect to a specific phy (mii bus id:phy device id) */
#define PHY_ID_FMT "%s:%02x" #define PHY_ID_FMT "%s:%02x"
/* #define MII_BUS_ID_SIZE 61
* Need to be a little smaller than phydev->dev.bus_id to leave room
* for the ":%02x"
*/
#define MII_BUS_ID_SIZE (20 - 3)
/* Or MII_ADDR_C45 into regnum for read/write on mii_bus to enable the 21 bit /* Or MII_ADDR_C45 into regnum for read/write on mii_bus to enable the 21 bit
IEEE 802.3ae clause 45 addressing mode used by 10GIGE phy chips. */ IEEE 802.3ae clause 45 addressing mode used by 10GIGE phy chips. */
...@@ -599,7 +595,7 @@ struct phy_driver { ...@@ -599,7 +595,7 @@ struct phy_driver {
/* A Structure for boards to register fixups with the PHY Lib */ /* A Structure for boards to register fixups with the PHY Lib */
struct phy_fixup { struct phy_fixup {
struct list_head list; struct list_head list;
char bus_id[20]; char bus_id[MII_BUS_ID_SIZE + 3];
u32 phy_uid; u32 phy_uid;
u32 phy_uid_mask; u32 phy_uid_mask;
int (*run)(struct phy_device *phydev); int (*run)(struct phy_device *phydev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment