mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
net: dsa: microchip: ksz8795: use num_vlans where possible
The value of the define VLAN_TABLE_ENTRIES can be derived from num_vlans. This patch is using the variable num_vlans instead and removes the extra define. Reviewed-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
241ed719bc
commit
02ffbb0270
2 changed files with 1 additions and 2 deletions
|
@ -1084,7 +1084,7 @@ static int ksz8795_setup(struct dsa_switch *ds)
|
||||||
(BROADCAST_STORM_VALUE *
|
(BROADCAST_STORM_VALUE *
|
||||||
BROADCAST_STORM_PROT_RATE) / 100);
|
BROADCAST_STORM_PROT_RATE) / 100);
|
||||||
|
|
||||||
for (i = 0; i < VLAN_TABLE_ENTRIES; i++)
|
for (i = 0; i < (dev->num_vlans / 4); i++)
|
||||||
ksz8795_r_vlan_entries(dev, i);
|
ksz8795_r_vlan_entries(dev, i);
|
||||||
|
|
||||||
/* Setup STP address for STP operation. */
|
/* Setup STP address for STP operation. */
|
||||||
|
|
|
@ -989,7 +989,6 @@
|
||||||
#define TAIL_TAG_OVERRIDE BIT(6)
|
#define TAIL_TAG_OVERRIDE BIT(6)
|
||||||
#define TAIL_TAG_LOOKUP BIT(7)
|
#define TAIL_TAG_LOOKUP BIT(7)
|
||||||
|
|
||||||
#define VLAN_TABLE_ENTRIES (4096 / 4)
|
|
||||||
#define FID_ENTRIES 128
|
#define FID_ENTRIES 128
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue