ethtool -S on a DSA interface can deadlock for some switches because
the same lock is taken twice. Use the register read function which
expects the lock to be already held.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Fixes: 31888234b736 ("net: dsa: mv88e6xxx: Replace stats mutex with SMI mutex")
Signed-off-by: David S. Miller <davem@davemloft.net>
                u32 high = 0;
 
                if (s->reg >= 0x100) {
-                       ret = mv88e6xxx_reg_read(ds, REG_PORT(port),
-                                                s->reg - 0x100);
+                       ret = _mv88e6xxx_reg_read(ds, REG_PORT(port),
+                                                 s->reg - 0x100);
                        if (ret < 0)
                                goto error;
                        low = ret;