mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
net: dsa: b53: remove redundant premature assignment to new_pvid
Variable new_pvid is being assigned with a value that is never read, the following if statement updates new_pvid with a new value in both of the if paths. The assignment is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King <colin.king@canonical.com> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f96e9641e9
commit
9f01a71c5c
@ -1325,7 +1325,6 @@ int b53_vlan_filtering(struct dsa_switch *ds, int port, bool vlan_filtering)
|
|||||||
u16 pvid, new_pvid;
|
u16 pvid, new_pvid;
|
||||||
|
|
||||||
b53_read16(dev, B53_VLAN_PAGE, B53_VLAN_PORT_DEF_TAG(port), &pvid);
|
b53_read16(dev, B53_VLAN_PAGE, B53_VLAN_PORT_DEF_TAG(port), &pvid);
|
||||||
new_pvid = pvid;
|
|
||||||
if (!vlan_filtering) {
|
if (!vlan_filtering) {
|
||||||
/* Filtering is currently enabled, use the default PVID since
|
/* Filtering is currently enabled, use the default PVID since
|
||||||
* the bridge does not expect tagging anymore
|
* the bridge does not expect tagging anymore
|
||||||
|
Loading…
Reference in New Issue
Block a user