Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 17a8b6b0 authored by Thierry Reding's avatar Thierry Reding
Browse files

drm/tegra: Fix HDMI audio frequency typo



The correct check is for 48 kHz, not 480 kHz. Found by Coverity.

Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 425c0fdc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -379,7 +379,7 @@ static void tegra_hdmi_setup_audio_fs_tables(struct tegra_hdmi *hdmi)

		if (f > 96000)
			delta = 2;
		else if (f > 480000)
		else if (f > 48000)
			delta = 6;
		else
			delta = 9;