diff options
author | Simon Glass <sjg@chromium.org> | 2016-07-04 11:58:16 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-07-14 20:40:24 -0600 |
commit | efefe1221bd779f319b810c5415e577c331edec8 (patch) | |
tree | 296764cd43f375b3fca84d31c09bb8f15dc416dd /tools | |
parent | fd1c2d9b6a3a9b41ae070ca47361bd6cc6aaaf09 (diff) | |
download | u-boot-efefe1221bd779f319b810c5415e577c331edec8.tar.gz |
dtoc: Ignore the u-boot, dm-pre-reloc property
This property is not useful for of-platdata, so omit it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/dtoc/dtoc.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/dtoc/dtoc.py b/tools/dtoc/dtoc.py index 24f3858561..374ad1ca49 100755 --- a/tools/dtoc/dtoc.py +++ b/tools/dtoc/dtoc.py @@ -40,6 +40,7 @@ PROP_IGNORE_LIST = [ 'linux,phandle', "status", 'phandle', + 'u-boot,dm-pre-reloc', ] # C type declarations for the tyues we support |