[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1484826415-31631-1-git-send-email-volodymyr.bendiuga@gmail.com>
Date: Thu, 19 Jan 2017 12:46:55 +0100
From: Volodymyr Bendiuga <volodymyr.bendiuga@...il.com>
To: f.fainelli@...il.com, andrew@...n.ch, netdev@...r.kernel.org,
volodymyr.bendiuga@...termo.se
Cc: Volodymyr Bendiuga <volodymyr.bendiuga@...il.com>,
Magnus Öberg <magnus.oberg@...termo.se>
Subject: [PATCH v2 net-next] phy: increase size of bus_id and MII_BUS_ID_SIZE
Some bus names are pretty long and do not fit into
20 chars, therefore bus_id size is increased together
with MII_BUS_ID_SIZE to host larger names.
Signed-off-by: Volodymyr Bendiuga <volodymyr.bendiuga@...il.com>
Signed-off-by: Magnus Öberg <magnus.oberg@...termo.se>
---
include/linux/phy.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/phy.h b/include/linux/phy.h
index f7d95f6..f53f0cd 100644
--- a/include/linux/phy.h
+++ b/include/linux/phy.h
@@ -162,7 +162,7 @@ static inline const char *phy_modes(phy_interface_t interface)
* Need to be a little smaller than phydev->dev.bus_id to leave room
* for the ":%02x"
*/
-#define MII_BUS_ID_SIZE (20 - 3)
+#define MII_BUS_ID_SIZE (64 - 3)
/* 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. */
@@ -632,7 +632,7 @@ struct phy_driver {
/* A Structure for boards to register fixups with the PHY Lib */
struct phy_fixup {
struct list_head list;
- char bus_id[20];
+ char bus_id[64];
u32 phy_uid;
u32 phy_uid_mask;
int (*run)(struct phy_device *phydev);
--
2.7.4
Powered by blists - more mailing lists