drm/tegra: sor - Use bits-per-color from panel
This change uses the value of bits-per-color from panel to remove one more hardcoded value. Signed-off-by: Stéphane Marchesin <marcheu@chromium.org> Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
Родитель
961e3beae3
Коммит
054b1bd161
|
@ -525,7 +525,7 @@ static int tegra_output_sor_enable(struct tegra_output *output)
|
||||||
dev_err(sor->dev, "failed to set safe parent clock: %d\n", err);
|
dev_err(sor->dev, "failed to set safe parent clock: %d\n", err);
|
||||||
|
|
||||||
memset(&config, 0, sizeof(config));
|
memset(&config, 0, sizeof(config));
|
||||||
config.bits_per_pixel = 24; /* XXX: don't hardcode? */
|
config.bits_per_pixel = output->connector.display_info.bpc * 3;
|
||||||
|
|
||||||
err = tegra_sor_calc_config(sor, mode, &config, &link);
|
err = tegra_sor_calc_config(sor, mode, &config, &link);
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче