summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-06-19 04:09:00 (GMT)
committerSimon Glass <sjg@chromium.org>2017-07-11 16:08:20 (GMT)
commit86290ce40e76ad2e09da096cc7686cdc86756ee1 (patch)
tree8dd854d05c95dd2389c83dd529e707e1c7060d04 /tools
parent2be282ca01dba237504fe2887fbd4539865093c3 (diff)
downloadu-boot-fsl-qoriq-86290ce40e76ad2e09da096cc7686cdc86756ee1.tar.xz
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.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/dtoc/dtb_platdata.py b/tools/dtoc/dtb_platdata.py
index 75adf48..d86651b 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):