mirror of
https://github.com/qca/qca-swiss-army-knife.git
synced 2025-12-10 07:44:42 +01:00
Compare commits
3 commits
ecb92a0c6f
...
5ad1e7342a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5ad1e7342a | ||
|
|
852bd62202 | ||
|
|
c66ae81c34 |
2 changed files with 9 additions and 2 deletions
|
|
@ -93,7 +93,11 @@ checkpatch_filter = [
|
|||
('DEFINE_EVENT', 'MACRO_ARG_UNUSED'),
|
||||
]
|
||||
|
||||
sparse_filter = [r'warning: dubious: x & !y']
|
||||
sparse_filter = [
|
||||
r'warning: dubious: x & !y',
|
||||
# sparse doesn't correctly handle guard()
|
||||
r'warning: context imbalance in .* - wrong count at exit',
|
||||
]
|
||||
|
||||
# global variables
|
||||
|
||||
|
|
|
|||
|
|
@ -90,7 +90,10 @@ checkpatch_filter = [
|
|||
('for_each_ar', 'MACRO_ARG_REUSE'),
|
||||
]
|
||||
|
||||
sparse_filter = []
|
||||
sparse_filter = [
|
||||
# sparse doesn't correctly handle guard()
|
||||
r'warning: context imbalance in .* - wrong count at exit',
|
||||
]
|
||||
|
||||
# global variables
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue