diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2017-10-26 17:22:56 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-27 17:00:09 +0200 |
commit | 02bc6e546e858b209c3ebe380a13a73b333b1b3f (patch) | |
tree | bb5750dc5daf1022a39028a48ce6e932a3888f2a /net/dsa/legacy.c | |
parent | net: dsa: use dsa_is_user_port everywhere (diff) | |
download | linux-02bc6e546e858b209c3ebe380a13a73b333b1b3f.tar.xz linux-02bc6e546e858b209c3ebe380a13a73b333b1b3f.zip |
net: dsa: introduce dsa_user_ports helper
Introduce a dsa_user_ports() helper to return the ds->enabled_port_mask
mask which is more explicit. This will also minimize diffs when touching
this internal mask.
Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa/legacy.c')
-rw-r--r-- | net/dsa/legacy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dsa/legacy.c b/net/dsa/legacy.c index 0b79c6171d0d..fa543c4a6061 100644 --- a/net/dsa/legacy.c +++ b/net/dsa/legacy.c @@ -136,7 +136,7 @@ static int dsa_switch_setup_one(struct dsa_switch *ds, /* Make the built-in MII bus mask match the number of ports, * switch drivers can override this later */ - ds->phys_mii_mask = ds->enabled_port_mask; + ds->phys_mii_mask |= dsa_user_ports(ds); /* * If the CPU connects to this switch, set the switch tree |