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:
Thierry Reding 2013-12-16 10:01:24 +01:00
parent 425c0fdc42
commit 17a8b6b037
1 changed files with 1 additions and 1 deletions

View File

@ -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;