All of lore.kernel.org
 help / color / mirror / Atom feed
* re: drm/exynos: consider deferred probe case
@ 2014-06-10 12:38 Dan Carpenter
  2014-06-11  6:12 ` Inki Dae
  0 siblings, 1 reply; 6+ messages in thread
From: Dan Carpenter @ 2014-06-10 12:38 UTC (permalink / raw)
  To: inki.dae; +Cc: linux-samsung-soc

Hello Inki Dae,

The patch df5225bc9a87: "drm/exynos: consider deferred probe case"
from May 29, 2014, leads to the following static checker warning:

	drivers/gpu/drm/exynos/exynos_drm_fimd.c:996 fimd_probe()
	warn: 'ctx->display' isn't an ERR_PTR

drivers/gpu/drm/exynos/exynos_drm_fimd.c
   994  
   995          ctx->display = exynos_dpi_probe(dev);
   996          if (IS_ERR(ctx->display))
   997                  return PTR_ERR(ctx->display);
   998  

Smatch is complaining because my config has CONFIG_DRM_EXYNOS_DPI
disabled.

1) If CONFIG_DRM_EXYNOS_DPI isn't enabled, we still return "0".  That
will cause a Sparse warning.

2) Also there are still a number of checks for "if (ctx->display)".
Those things are weird to me, are those checks to see
CONFIG_DRM_EXYNOS_DPI is enabled or are they checking that
exynos_dpi_probe() succeeded?

regards,
dan carpenter

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-06-18  5:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-10 12:38 drm/exynos: consider deferred probe case Dan Carpenter
2014-06-11  6:12 ` Inki Dae
2014-06-11  6:36   ` [patch] drm/exynos: change zero to NULL for sparse Dan Carpenter
2014-06-11  6:36     ` Dan Carpenter
2014-06-18  5:06     ` Inki Dae
2014-06-18  5:06       ` Inki Dae

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.