diff options
author | Tom Rini | 2022-06-14 13:59:23 -0400 |
---|---|---|
committer | Tom Rini | 2022-06-14 13:59:23 -0400 |
commit | c18e5fb055ab789f58434e3cb432582adee0134c (patch) | |
tree | 1e8b91d9603edddef96b8338111c7b8ba9092078 | |
parent | c1d9020cc7f249a27d117ef6c69a53f5fe0d1407 (diff) |
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.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/dtoc/test_src_scan.py b/tools/dtoc/test_src_scan.py index bdfa669d816..f93cd7f5a3a 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) |