diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2015-08-17 17:37:03 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2015-12-14 14:37:25 +0100 |
commit | db8b42fbfc6f778fa22201f24e53fc4250b52e4c (patch) | |
tree | 3f36e373b0d1263d69a1391ded86e249459622f5 /drivers/gpu/drm/tegra | |
parent | cf6b17445dbf6c287fc389c9a9cb2276984b6a5f (diff) |
drm/tegra: checking for IS_ERR() instead of NULL
The tegra_sor_hdmi_find_settings() function returns NULL on error and
not an ERR_PTR.
Fixes: 459cc2c6800b ('drm/tegra: sor: Add HDMI support')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra')
-rw-r--r-- | drivers/gpu/drm/tegra/sor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/tegra/sor.c b/drivers/gpu/drm/tegra/sor.c index 17e008f6081f..a5fddd3d06a9 100644 --- a/drivers/gpu/drm/tegra/sor.c +++ b/drivers/gpu/drm/tegra/sor.c @@ -1946,9 +1946,9 @@ static void tegra_sor_hdmi_enable(struct drm_encoder *encoder) /* production settings */ settings = tegra_sor_hdmi_find_settings(sor, mode->clock * 1000); - if (IS_ERR(settings)) { - dev_err(sor->dev, "no settings for pixel clock %d Hz: %ld\n", - mode->clock * 1000, PTR_ERR(settings)); + if (!settings) { + dev_err(sor->dev, "no settings for pixel clock %d Hz\n", + mode->clock * 1000); return; } |