diff options
author | Simon Glass <sjg@chromium.org> | 2021-11-21 20:48:37 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-01-24 16:03:27 -0500 |
commit | 0c7cdd0302d4b57ee83806d0f6b7add7be3cc461 (patch) | |
tree | 302fe3fd500a593de40617359f5df24ba10fc660 | |
parent | f0198f7f8936682752af2044ada7ef202c17f87a (diff) |
dtoc: Fix up a code comment that confuses pylint
This produces a pylint error at present. Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | tools/dtoc/dtb_platdata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dtoc/dtb_platdata.py b/tools/dtoc/dtb_platdata.py index 3bb5c680f2..a69a7889ce 100644 --- a/tools/dtoc/dtb_platdata.py +++ b/tools/dtoc/dtb_platdata.py @@ -72,7 +72,7 @@ class Ftype(IntEnum): # This holds information about each type of output file dtoc can create -# type: Type of file (Ftype) +# ftype: Type of file (Ftype) # fname: Filename excluding directory, e.g. 'dt-plat.c' # hdr_comment: Comment explaining the purpose of the file OutputFile = collections.namedtuple('OutputFile', |