summaryrefslogtreecommitdiff
path: root/tools/dtoc/dtoc.py
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2017-02-08 16:24:44 -0500
committerTom Rini <trini@konsulko.com>2017-02-08 16:24:44 -0500
commit21342d4aed6c77a4aa7a5b2579b3c23e21aea31a (patch)
tree279c781bdcbe697257ff86714fa0355bcd92fd19 /tools/dtoc/dtoc.py
parent7582ddce132390fba10822c5977cd1ab532bb1eb (diff)
parentf11a0af713a714ee2efcd810dd81c6dfd59381aa (diff)
downloadu-boot-imx-21342d4aed6c77a4aa7a5b2579b3c23e21aea31a.zip
u-boot-imx-21342d4aed6c77a4aa7a5b2579b3c23e21aea31a.tar.gz
u-boot-imx-21342d4aed6c77a4aa7a5b2579b3c23e21aea31a.tar.bz2
Merge git://git.denx.de/u-boot-dm
Diffstat (limited to 'tools/dtoc/dtoc.py')
-rwxr-xr-xtools/dtoc/dtoc.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/dtoc/dtoc.py b/tools/dtoc/dtoc.py
index 11050b6..6df7b0d 100755
--- a/tools/dtoc/dtoc.py
+++ b/tools/dtoc/dtoc.py
@@ -54,6 +54,7 @@ def Conv_name_to_c(name):
str = name.replace('@', '_at_')
str = str.replace('-', '_')
str = str.replace(',', '_')
+ str = str.replace('.', '_')
str = str.replace('/', '__')
return str