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:
parent
425c0fdc42
commit
17a8b6b037
1 changed files with 1 additions and 1 deletions
|
@ -379,7 +379,7 @@ static void tegra_hdmi_setup_audio_fs_tables(struct tegra_hdmi *hdmi)
|
||||||
|
|
||||||
if (f > 96000)
|
if (f > 96000)
|
||||||
delta = 2;
|
delta = 2;
|
||||||
else if (f > 480000)
|
else if (f > 48000)
|
||||||
delta = 6;
|
delta = 6;
|
||||||
else
|
else
|
||||||
delta = 9;
|
delta = 9;
|
||||||
|
|
Loading…
Add table
Reference in a new issue