diff options
author | Andre Przywara <andre.przywara@arm.com> | 2017-12-04 02:05:10 +0000 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-01-15 18:29:21 -0700 |
commit | b2267e8a22bd662fff00d3ba9751cfef5773a4b6 (patch) | |
tree | 114121e8cb73ae391b816c6db92785902f1fc52b /common/image-sig.c | |
parent | 971a54193c9a90a6651064c4a7879e3568e9e7b8 (diff) | |
download | u-boot-b2267e8a22bd662fff00d3ba9751cfef5773a4b6.tar.gz |
fix incorrect usage of DT node unit address in comments
The DT spec demands a unit-address in a node name to match the "reg"
property in that node. Newer dtc versions will throw warnings if this is
not the case.
Fix all occurences in the tree where node names were mentioned in
comments, to not give bad examples to the reader.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Diffstat (limited to 'common/image-sig.c')
-rw-r--r-- | common/image-sig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/image-sig.c b/common/image-sig.c index bf824fef3c..d9f712fc1e 100644 --- a/common/image-sig.c +++ b/common/image-sig.c @@ -347,7 +347,7 @@ int fit_config_check_sig(const void *fit, int noffset, int required_keynode, /* * Each node can generate one region for each sub-node. Allow for - * 7 sub-nodes (hash@1, signature@1, etc.) and some extra. + * 7 sub-nodes (hash-1, signature-1, etc.) and some extra. */ max_regions = 20 + count * 7; struct fdt_region fdt_regions[max_regions]; |