mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-05 06:08:22 +00:00
drm/tegra: sor: Use correct SOR index on Tegra210
The device tree bindings for the Tegra210 SOR don't require the controller instance to be defined, since the instance can be derived from the compatible string. The index is never used on Tegra210, so we got away with it not getting set. However, subsequent patches will change that, so make sure the proper index is used. Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
b9b9e19762
commit
24e64f86da
1 changed files with 5 additions and 0 deletions
|
@ -3759,6 +3759,11 @@ static int tegra_sor_parse_dt(struct tegra_sor *sor)
|
|||
* earlier
|
||||
*/
|
||||
sor->pad = TEGRA_IO_PAD_HDMI_DP0 + sor->index;
|
||||
} else {
|
||||
if (sor->soc->supports_edp)
|
||||
sor->index = 0;
|
||||
else
|
||||
sor->index = 1;
|
||||
}
|
||||
|
||||
err = of_property_read_u32_array(np, "nvidia,xbar-cfg", xbar_cfg, 5);
|
||||
|
|
Loading…
Add table
Reference in a new issue