diff options
author | Thierry Reding <treding@nvidia.com> | 2017-10-12 17:34:11 +0200 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2017-12-13 14:36:38 +0100 |
commit | 7b2c2845e5d59db1d9dfa822436a71b2de18a7ee (patch) | |
tree | 860651be1b158843d1df149c040d8991cb1db9a6 /drivers/gpu/drm/tegra | |
parent | 82b81b3ec1a796d10206fd8333437db20ef215fc (diff) | |
download | linux-7b2c2845e5d59db1d9dfa822436a71b2de18a7ee.tar.bz2 |
drm/tegra: dpaux: Add Tegra186 support
DPAUX is the same as on previous generations. Supporting it is as simple
as adding the compatible string so that the driver will bind to any of
the devices.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra')
-rw-r--r-- | drivers/gpu/drm/tegra/dpaux.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/tegra/dpaux.c b/drivers/gpu/drm/tegra/dpaux.c index 2cd671b1a9cc..312b93c0323c 100644 --- a/drivers/gpu/drm/tegra/dpaux.c +++ b/drivers/gpu/drm/tegra/dpaux.c @@ -636,6 +636,7 @@ static const struct dev_pm_ops tegra_dpaux_pm_ops = { }; static const struct of_device_id tegra_dpaux_of_match[] = { + { .compatible = "nvidia,tegra186-dpaux", }, { .compatible = "nvidia,tegra210-dpaux", }, { .compatible = "nvidia,tegra124-dpaux", }, { }, |