diff options
| author | Vladimir Oltean <[email protected]> | 2021-12-06 16:57:53 +0000 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2021-12-08 22:31:15 +0000 |
| commit | 41fb0cf1bced59c1fe178cf6cc9f716b5da9e40e (patch) | |
| tree | 7cb05115b0a0269d3d88d41a7cac4d4d81e903c7 /drivers/net/dsa/microchip | |
| parent | net: dsa: hide dp->bridge_dev and dp->bridge_num in the core behind helpers (diff) | |
| download | kernel-41fb0cf1bced59c1fe178cf6cc9f716b5da9e40e.tar.gz kernel-41fb0cf1bced59c1fe178cf6cc9f716b5da9e40e.zip | |
net: dsa: hide dp->bridge_dev and dp->bridge_num in drivers behind helpers
The location of the bridge device pointer and number is going to change.
It is not going to be kept individually per port, but in a common
structure allocated dynamically and which will have lockdep validation.
Use the helpers to access these elements so that we have a migration
path to the new organization.
Signed-off-by: Vladimir Oltean <[email protected]>
Signed-off-by: Jakub Kicinski <[email protected]>
Diffstat (limited to 'drivers/net/dsa/microchip')
| -rw-r--r-- | drivers/net/dsa/microchip/ksz_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/dsa/microchip/ksz_common.c b/drivers/net/dsa/microchip/ksz_common.c index 8a04302018dc..cebcb73cda76 100644 --- a/drivers/net/dsa/microchip/ksz_common.c +++ b/drivers/net/dsa/microchip/ksz_common.c @@ -43,7 +43,7 @@ void ksz_update_port_member(struct ksz_device *dev, int port) continue; if (port == i) continue; - if (!dp->bridge_dev || dp->bridge_dev != other_dp->bridge_dev) + if (!dsa_port_bridge_same(dp, other_dp)) continue; if (other_p->stp_state == BR_STATE_FORWARDING && |
