diff options
author | Peter Robinson <pbrobinson@gmail.com> | 2022-05-03 09:32:54 +0100 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2022-06-13 15:31:10 -0700 |
commit | 0d2105ae5e32ef5c87246054b2638fe50e62448c (patch) | |
tree | bc11b12ff98a506320cd0c2e0af6faba2615401c | |
parent | b5cf255f739db6c1b14e0037853921884c8da2b8 (diff) | |
download | u-boot-0d2105ae5e32ef5c87246054b2638fe50e62448c.zip u-boot-0d2105ae5e32ef5c87246054b2638fe50e62448c.tar.gz u-boot-0d2105ae5e32ef5c87246054b2638fe50e62448c.tar.bz2 |
arm: tegra: Update some DT compatibles
Some of the DT compatibles have changed upstream so add new DT compatibles
to ensure things continue to keep working if the device trees are
updated.
Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
-rw-r--r-- | drivers/i2c/tegra_i2c.c | 1 | ||||
-rw-r--r-- | drivers/video/tegra124/dp.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/i2c/tegra_i2c.c b/drivers/i2c/tegra_i2c.c index 1e74484..2394e9d 100644 --- a/drivers/i2c/tegra_i2c.c +++ b/drivers/i2c/tegra_i2c.c @@ -514,6 +514,7 @@ static const struct dm_i2c_ops tegra_i2c_ops = { static const struct udevice_id tegra_i2c_ids[] = { { .compatible = "nvidia,tegra114-i2c", .data = TYPE_114 }, + { .compatible = "nvidia,tegra124-i2c", .data = TYPE_114 }, { .compatible = "nvidia,tegra20-i2c", .data = TYPE_STD }, { .compatible = "nvidia,tegra20-i2c-dvc", .data = TYPE_DVC }, { } diff --git a/drivers/video/tegra124/dp.c b/drivers/video/tegra124/dp.c index 8f5116f..ee4f09a 100644 --- a/drivers/video/tegra124/dp.c +++ b/drivers/video/tegra124/dp.c @@ -1609,6 +1609,7 @@ static int dp_tegra_probe(struct udevice *dev) static const struct udevice_id tegra_dp_ids[] = { { .compatible = "nvidia,tegra124-dpaux" }, + { .compatible = "nvidia,tegra210-dpaux" }, { } }; |