summaryrefslogtreecommitdiff
path: root/scripts/spdxcheck.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-01-23 22:55:11 +0300
committerTom Rini <trini@konsulko.com>2022-02-03 20:16:00 +0300
commit587254ebcf05fa76b6a957ffa72db053177836cf (patch)
tree22df40e9c6e9b3785c6240c6bdce00c15e66f176 /scripts/spdxcheck.py
parent68f08966b0d07b5d9cd1abc8e14809a56e08e814 (diff)
downloadu-boot-587254ebcf05fa76b6a957ffa72db053177836cf.tar.xz
scripts/checkpatch.pl: Resync with v5.16
This resyncs us with the version found in v5.16 of the Linux kernel with the following exceptions: - Keep our u-boot specific tests / code area. - Change the location of checkpatch.rst - Drop the "use strscpy" test as we don't have that, but do have strlcpy and want that used now. - Keep debug/printf in the list for $logFunctions This also syncs the spdxcheck.py tool and all the associated documentation. S Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'scripts/spdxcheck.py')
-rwxr-xr-xscripts/spdxcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/spdxcheck.py b/scripts/spdxcheck.py
index 3e784cf9f4..ebd06ae642 100755
--- a/scripts/spdxcheck.py
+++ b/scripts/spdxcheck.py
@@ -44,7 +44,7 @@ def read_spdxdata(repo):
continue
exception = None
- for l in open(el.path).readlines():
+ for l in open(el.path, encoding="utf-8").readlines():
if l.startswith('Valid-License-Identifier:'):
lid = l.split(':')[1].strip().upper()
if lid in spdx.licenses: