projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2be282c
)
dtoc: Don't handle properties with / in them
author
Simon Glass
<sjg@chromium.org>
Mon, 19 Jun 2017 04:09:00 +0000
(22:09 -0600)
committer
Simon 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
patch
|
blob
|
history
diff --git
a/tools/dtoc/dtb_platdata.py
b/tools/dtoc/dtb_platdata.py
index 75adf48deafaffad308c90d67933858dfac81344..d86651b9aa9a076eea03b7882c628e7cc605c040 100644
(file)
--- 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):