Prev: [PATCH] jbd: Remove redundant NULL check upon kfree()
Next: [PATCH] DRM: Replace kmalloc/memset combos with kzalloc
From: Davidlohr Bueso on 11 Aug 2010 09:10 i915: Remove redundant NULL check upon kfree(). Signed-off-by: Davidlohr Bueso <dave(a)gnu.org> --- drivers/gpu/drm/i915/intel_dvo.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/intel_dvo.c b/drivers/gpu/drm/i915/intel_dvo.c index 227feca..b3955bc 100644 --- a/drivers/gpu/drm/i915/intel_dvo.c +++ b/drivers/gpu/drm/i915/intel_dvo.c @@ -283,8 +283,7 @@ static void intel_dvo_enc_destroy(struct drm_encoder *encoder) if (dvo) { if (dvo->dev_ops->destroy) dvo->dev_ops->destroy(dvo); - if (dvo->panel_fixed_mode) - kfree(dvo->panel_fixed_mode); + kfree(dvo->panel_fixed_mode); } if (intel_encoder->i2c_bus) intel_i2c_destroy(intel_encoder->i2c_bus); -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |