Re: [PATCH 02/12] gma500: Re-order checks and dereferences inpsb_intel_lvds

From: Greg KH
Date: Fri Jul 08 2011 - 17:00:50 EST


On Fri, Jul 08, 2011 at 09:43:15AM +0100, Alan Cox wrote:
> From: Alan Cox <alan@xxxxxxxxxxxxxxx>
>
> Dan Carpenter reports:
>
> Smatch complains about 6a7afe3acc4b "gma500: continue abstracting
> platform specific code"
>
> drivers/staging/gma500/psb_intel_lvds.c +579 psb_intel_lvds_set_property(7)
> warn: variable dereferenced before check 'encoder'
>
> --- a/drivers/staging/gma500/psb_intel_lvds.c
> +++ b/drivers/staging/gma500/psb_intel_lvds.c
> @@ -575,11 +575,12 @@ int psb_intel_lvds_set_property(struct drm_connector
> *connector,
> struct drm_property *property,
> uint64_t value)
> {
> - struct drm_encoder *pEncoder = connector->encoder;
> + struct drm_encoder *encoder = connector->encoder;
> + struct drm_psb_private *dev_priv = encoder->dev->dev_private;
> ^^^^^^^^^^^^
> dereference encoder here.
>
> Signed-off-by: Alan Cox <alan@xxxxxxxxxxxxxxx>

Oh that played hell with git, please don't do that again...

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/