Skip to content

Commit 5fba01a

Browse files
committed
drm/tegra: sor: Use correct power supply names for HDMI
The hardware documentation uses AVDD_IO_HDMI_DP and VDD_HDMI_DP_PLL to denote the two power supplies that drive the HDMI/DP outputs of the SOR. Use these names instead of the arbitrary AVDD_IO and VDD_PLL names that were used previously to avoid confusion. Signed-off-by: Thierry Reding <[email protected]>
1 parent 7c6b8ca commit 5fba01a

File tree

1 file changed

+2
-2
lines changed
  • drivers/gpu/drm/tegra

1 file changed

+2
-2
lines changed

drivers/gpu/drm/tegra/sor.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2946,7 +2946,7 @@ static int tegra_sor_hdmi_probe(struct tegra_sor *sor)
29462946
{
29472947
int err;
29482948

2949-
sor->avdd_io_supply = devm_regulator_get(sor->dev, "avdd-io");
2949+
sor->avdd_io_supply = devm_regulator_get(sor->dev, "avdd-io-hdmi-dp");
29502950
if (IS_ERR(sor->avdd_io_supply)) {
29512951
dev_err(sor->dev, "cannot get AVDD I/O supply: %ld\n",
29522952
PTR_ERR(sor->avdd_io_supply));
@@ -2960,7 +2960,7 @@ static int tegra_sor_hdmi_probe(struct tegra_sor *sor)
29602960
return err;
29612961
}
29622962

2963-
sor->vdd_pll_supply = devm_regulator_get(sor->dev, "vdd-pll");
2963+
sor->vdd_pll_supply = devm_regulator_get(sor->dev, "vdd-hdmi-dp-pll");
29642964
if (IS_ERR(sor->vdd_pll_supply)) {
29652965
dev_err(sor->dev, "cannot get VDD PLL supply: %ld\n",
29662966
PTR_ERR(sor->vdd_pll_supply));

0 commit comments

Comments
 (0)