diff options
author | Simon Glass | 2017-06-18 22:09:00 -0600 |
---|---|---|
committer | Simon Glass | 2017-07-11 10:08:20 -0600 |
commit | 86290ce40e76ad2e09da096cc7686cdc86756ee1 (patch) | |
tree | 8dd854d05c95dd2389c83dd529e707e1c7060d04 /tools | |
parent | 2be282ca01dba237504fe2887fbd4539865093c3 (diff) |
dtoc: Don't handle properties with / in them
This conversion appears to not be needed as it does not occur in practice.
Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dtoc/dtb_platdata.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/dtoc/dtb_platdata.py b/tools/dtoc/dtb_platdata.py index 75adf48deaf..d86651b9aa9 100644 --- a/tools/dtoc/dtb_platdata.py +++ b/tools/dtoc/dtb_platdata.py @@ -55,7 +55,6 @@ def conv_name_to_c(name): new = new.replace('-', '_') new = new.replace(',', '_') new = new.replace('.', '_') - new = new.replace('/', '__') return new def tab_to(num_tabs, line): |