mirror of
https://github.com/qca/qca-swiss-army-knife.git
synced 2025-12-09 23:34:42 +01:00
Compare commits
4 commits
ecb92a0c6f
...
5ad1e7342a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5ad1e7342a | ||
|
|
852bd62202 | ||
|
|
c66ae81c34 | ||
|
|
2795c05492 |
10 changed files with 17 additions and 10 deletions
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright (c) 2015 Qualcomm Atheros, Inc.
|
||||
# Copyright (c) 2018, The Linux Foundation. All rights reserved.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright (c) 2016 Qualcomm Atheros, Inc.
|
||||
# Copyright (c) 2018, The Linux Foundation. All rights reserved.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright (c) 2012-2015 Qualcomm Atheros, Inc.
|
||||
#
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright (c) 2016 Qualcomm Atheros, Inc.
|
||||
# Copyright (c) 2018,2020 The Linux Foundation. All rights reserved.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright (c) 2012-2015 Qualcomm Atheros, Inc.
|
||||
# Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright (c) 2016 Qualcomm Atheros, Inc.
|
||||
# Copyright (c) 2018,2020 The Linux Foundation. All rights reserved.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved
|
||||
# Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright (c) 2010 Atheros Communications Inc.
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue