diff options
author | Felix Fietkau <nbd@nbd.name> | 2020-08-07 14:19:06 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2020-10-28 04:49:11 +0100 |
commit | 3023b0cc73520cf7b14e1bfa9075072098b6a753 (patch) | |
tree | 497f337b16ada29e941c984dba1e50a799dca62b /wireless.c | |
parent | 24ce1eab4910869576406bafd0489daf0d3e6e28 (diff) |
bridge: add support for defining port member vlans via hotplug ops
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'wireless.c')
-rw-r--r-- | wireless.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -319,7 +319,7 @@ static void wireless_interface_handle_link(struct wireless_interface *vif, bool if (!iface) continue; - interface_handle_link(iface, vif->ifname, up, true); + interface_handle_link(iface, vif->ifname, NULL, up, true); } } @@ -349,7 +349,7 @@ static void wireless_vlan_handle_link(struct wireless_vlan *vlan, bool up) if (!iface) continue; - interface_handle_link(iface, vlan->ifname, up, true); + interface_handle_link(iface, vlan->ifname, NULL, up, true); } } |