[patch] drm/tegra: checking for IS_ERR() instead of NULL

2015-12-14 Thread Thierry Reding
On Mon, Aug 17, 2015 at 05:37:03PM +0300, Dan Carpenter wrote:
> 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 

Sorry, this fell through the cracks. Applied now, thanks.

Thierry
-- next part --
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: 



[patch] drm/tegra: checking for IS_ERR() instead of NULL

2015-08-17 Thread Dan Carpenter
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 

diff --git a/drivers/gpu/drm/tegra/sor.c b/drivers/gpu/drm/tegra/sor.c
index da1715e..08c5461 100644
--- a/drivers/gpu/drm/tegra/sor.c
+++ b/drivers/gpu/drm/tegra/sor.c
@@ -1961,9 +1961,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;
}