aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/dsa
diff options
context:
space:
mode:
authorGeorge McCollister <george.mccollister@gmail.com>2019-08-29 09:14:41 -0500
committerDavid S. Miller <davem@davemloft.net>2019-08-31 13:19:07 -0700
commit5f81d5455589df2f580e634c2e9da55b80e63c30 (patch)
tree37fd54eca87f74db5c44bc899e93aab38dd8da6d /drivers/net/dsa
parentMerge tag 'batadv-net-for-davem-20190830' of git://git.open-mesh.org/linux-merge (diff)
downloadlinux-dev-5f81d5455589df2f580e634c2e9da55b80e63c30.tar.xz
linux-dev-5f81d5455589df2f580e634c2e9da55b80e63c30.zip
net: dsa: microchip: fill regmap_config name
Use the register value width as the regmap_config name to prevent the following error when the second and third regmap_configs are initialized. "debugfs: Directory '${bus-id}' with parent 'regmap' already present!" Signed-off-by: George McCollister <george.mccollister@gmail.com> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa')
-rw-r--r--drivers/net/dsa/microchip/ksz_common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/dsa/microchip/ksz_common.h b/drivers/net/dsa/microchip/ksz_common.h
index ee7096d8af07..72ec250b9540 100644
--- a/drivers/net/dsa/microchip/ksz_common.h
+++ b/drivers/net/dsa/microchip/ksz_common.h
@@ -128,6 +128,7 @@ static inline void ksz_pwrite32(struct ksz_device *dev, int port, int offset,
#define KSZ_REGMAP_ENTRY(width, swp, regbits, regpad, regalign) \
{ \
+ .name = #width, \
.val_bits = (width), \
.reg_stride = (width) / 8, \
.reg_bits = (regbits) + (regalign), \