Skip to content

Commit f9c19b9

Browse files
committed
netdev: tree_match: include Bluetooth and wireless
After recent improvements to PR matching we are now "correctly" not matching bluetooth PRs. After we excluded wireless and bluetooth via maintainers the cross-posts are relatively rare. Let them be tested. Signed-off-by: Jakub Kicinski <[email protected]>
1 parent a541cec commit f9c19b9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

netdev/tree_match.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def _tree_name_should_be_local_files(raw_email):
5959
'lib/',
6060
'net/',
6161
'drivers/atm/',
62+
'drivers/bluetooth/',
6263
'drivers/dpll/',
6364
'drivers/isdn/',
6465
'drivers/net/',
@@ -71,9 +72,7 @@ def _tree_name_should_be_local_files(raw_email):
7172
'tools/net/',
7273
'tools/testing/selftests/net/',
7374
}
74-
excluded_files = {
75-
'drivers/net/wireless/',
76-
}
75+
excluded_files = set()
7776
all_files = acceptable_files.union(required_files)
7877
required_found = False
7978
foreign_found = False

0 commit comments

Comments
 (0)