mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 06:41:06 -04:00
drm/tegra: Fix HDMI audio frequency typo
The correct check is for 48 kHz, not 480 kHz. Found by Coverity. Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user