Commit 8e401eccd3a62fb57f117bb09b7c1fc70ab19e8c

Authored by David S. Miller
1 parent 079e24ed80

phy: Eliminate references to BUS_ID_SIZE.

Just use the constant 20 to keep things working.

If someone is so motivated, this can be converted over to
dynamic strings.  I tried and it's a lot of work.

But for now this is good enough.

Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

... ... @@ -79,7 +79,7 @@
79 79 * Need to be a little smaller than phydev->dev.bus_id to leave room
80 80 * for the ":%02x"
81 81 */
82   -#define MII_BUS_ID_SIZE (BUS_ID_SIZE - 3)
  82 +#define MII_BUS_ID_SIZE (20 - 3)
83 83  
84 84 /*
85 85 * The Bus class for PHYs. Devices which provide access to
... ... @@ -407,7 +407,7 @@
407 407 /* A Structure for boards to register fixups with the PHY Lib */
408 408 struct phy_fixup {
409 409 struct list_head list;
410   - char bus_id[BUS_ID_SIZE];
  410 + char bus_id[20];
411 411 u32 phy_uid;
412 412 u32 phy_uid_mask;
413 413 int (*run)(struct phy_device *phydev);