From: Simon Glass Date: Mon, 19 Jun 2017 04:09:00 +0000 (-0600) Subject: dtoc: Don't handle properties with / in them X-Git-Tag: v2017.09-rc1~214^2~32 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=86290ce40e76ad2e09da096cc7686cdc86756ee1;p=oweals%2Fu-boot.git 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 --- diff --git a/tools/dtoc/dtb_platdata.py b/tools/dtoc/dtb_platdata.py index 75adf48dea..d86651b9aa 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):