aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-06-14 13:59:23 -0400
committerTom Rini <trini@konsulko.com>2022-06-14 13:59:23 -0400
commitc18e5fb055ab789f58434e3cb432582adee0134c (patch)
tree1e8b91d9603edddef96b8338111c7b8ba9092078
parentc1d9020cc7f249a27d117ef6c69a53f5fe0d1407 (diff)
downloadu-boot-c18e5fb055ab789f58434e3cb432582adee0134c.zip
u-boot-c18e5fb055ab789f58434e3cb432582adee0134c.tar.gz
u-boot-c18e5fb055ab789f58434e3cb432582adee0134c.tar.bz2
dtoc: Update test_src_scan.py for new tegra compatibles
This test was written to match up with the list of compatibles in drivers/i2c/tegra_i2c.c so adding another one requires the test to be updated to match. Fixes: 0d2105ae5e32 ("arm: tegra: Update some DT compatibles") Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r--tools/dtoc/test_src_scan.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/dtoc/test_src_scan.py b/tools/dtoc/test_src_scan.py
index bdfa669..f93cd7f 100644
--- a/tools/dtoc/test_src_scan.py
+++ b/tools/dtoc/test_src_scan.py
@@ -151,6 +151,7 @@ class TestSrcScan(unittest.TestCase):
self.assertEqual('UCLASS_I2C', drv.uclass_id)
self.assertEqual(
{'nvidia,tegra114-i2c': 'TYPE_114',
+ 'nvidia,tegra124-i2c': 'TYPE_114',
'nvidia,tegra20-i2c': 'TYPE_STD',
'nvidia,tegra20-i2c-dvc': 'TYPE_DVC'}, drv.compat)
self.assertEqual('i2c_bus', drv.priv)