]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
dtoc: Don't handle properties with / in them
authorSimon Glass <sjg@chromium.org>
Mon, 19 Jun 2017 04:09:00 +0000 (22:09 -0600)
committerSimon Glass <sjg@chromium.org>
Tue, 11 Jul 2017 16:08:20 +0000 (10:08 -0600)
This conversion appears to not be needed as it does not occur in practice.
Drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/dtoc/dtb_platdata.py

index 75adf48deafaffad308c90d67933858dfac81344..d86651b9aa9a076eea03b7882c628e7cc605c040 100644 (file)
@@ -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):