diff mbox

[pinmux,scripts,1/4] Board CSV import: Support all Tegra124 OD pins

Message ID 1413306680-27330-1-git-send-email-swarren@wwwdotorg.org
State Accepted, archived
Headers show

Commit Message

Stephen Warren Oct. 14, 2014, 5:11 p.m. UTC
From: Stephen Warren <swarren@nvidia.com>

Complete the list of OD pins in the CSV -> *.board import script for
Tegra124.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
 csv-to-board-tegra124-xlsx.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff mbox

Patch

diff --git a/csv-to-board-tegra124-xlsx.py b/csv-to-board-tegra124-xlsx.py
index be985c2b83c6..c150fface9d2 100755
--- a/csv-to-board-tegra124-xlsx.py
+++ b/csv-to-board-tegra124-xlsx.py
@@ -219,9 +219,8 @@  with open(csvfile, newline='') as fh:
             print('ERROR: %s: MUX CSV %s not in SOC F0..3 %s' % (ball_name, mux, repr(gpio_pin.funcs)), file=sys.stderr)
             sys.exit(1)
 
-        if ball_name.startswith('ddc_'):
+        if ball_name in ('reset_out_n', 'owr', 'hdmi_int', 'ddc_scl', 'ddc_sda'):
             # These balls' pad type is always OD, so we don't need to set it
-            # FIXME: There are a few other OD type pads to check for
             # FIXME: The SoC data structure should tell us the pad type instead of hard-coding it
             od = False