linux-tegra.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [pinmux scripts PATCH] board-to-kernel-dt: don't generate outer state node
@ 2015-05-14 14:20 Stephen Warren
       [not found] ` <1431613216-19745-1-git-send-email-swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Warren @ 2015-05-14 14:20 UTC (permalink / raw)
  To: Stephen Warren
  Cc: Simon Glass, linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren

From: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>

The important thing for board-to-kernel-dt to generate is the content of
the pinmux "state" node in DT. The name and label of the node that
contains this information is essentially irrelevant. Since this
irrelevant name and label varies between boards in existing DTs, update
board-to-kernel-dt so it doesn't generate it. This makes it obvious that
the name and label shouldn't be modified when importing new versions of
board-to-kernel-dt's output.

Signed-off-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
---
 board-to-kernel-dt.py | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/board-to-kernel-dt.py b/board-to-kernel-dt.py
index 273f74125fa6..55e556cea98b 100755
--- a/board-to-kernel-dt.py
+++ b/board-to-kernel-dt.py
@@ -44,8 +44,6 @@ def mapper_pull(val):
 def mapper_bool(val):
     return 'TEGRA_PIN_' + {False: 'DISABLE', True: 'ENABLE'}[val]
 
-print('		state_default: pinmux {')
-
 for pincfg in board.pincfgs_by_num():
     print('			' + pincfg.fullname + ' {')
     print('				nvidia,pins = "' + pincfg.fullname + '";')
@@ -70,6 +68,4 @@ for cfg in board.mipipadctrlcfgs_by_num():
     print('				nvidia,function = "' + cfg.mux + '";')
     print('			};')
 
-print('		};')
-
 board.warn_about_unconfigured_pins()
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-05-14 15:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-14 14:20 [pinmux scripts PATCH] board-to-kernel-dt: don't generate outer state node Stephen Warren
     [not found] ` <1431613216-19745-1-git-send-email-swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2015-05-14 14:29   ` Simon Glass
     [not found]     ` <CAPnjgZ0H+LwDSoMTCMNnKe+4LjwRF8kT7EE5O+GDkCr7eWDHTA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-05-14 15:52       ` Stephen Warren
2015-05-14 15:57       ` Stephen Warren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).