diff options
author | 2019-09-22 22:29:00 +0200 | |
---|---|---|
committer | 2019-09-22 22:29:00 +0200 | |
commit | 53c716412708db7000e06292fb89b2609f9a48f7 (patch) | |
tree | 3ede481ee0926f0e53e14bba61028d307d58296c /net/dsa/switch.c | |
parent | Merge branch 'for-5.3/upstream-fixes' into for-linus (diff) | |
parent | HID: apple: Fix stuck function keys when using FN (diff) | |
download | wireguard-linux-53c716412708db7000e06292fb89b2609f9a48f7.tar.xz wireguard-linux-53c716412708db7000e06292fb89b2609f9a48f7.zip |
Merge branch 'for-5.4/apple' into for-linus
- stuck 'fn' key fix for hid-apple from Joao Moreno
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to '')
-rw-r--r-- | net/dsa/switch.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/dsa/switch.c b/net/dsa/switch.c index 4ec5b7f85d51..09d9286b27cc 100644 --- a/net/dsa/switch.c +++ b/net/dsa/switch.c @@ -153,6 +153,9 @@ static void dsa_switch_mdb_add_bitmap(struct dsa_switch *ds, { int port; + if (!ds->ops->port_mdb_add) + return; + for_each_set_bit(port, bitmap, ds->num_ports) ds->ops->port_mdb_add(ds, port, mdb); } |