From: Antonino A. Daplas Date: Mon, 27 Mar 2006 09:17:34 +0000 (-0800) Subject: [PATCH] savagefb: Remove NULL check X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0e4be28023c14624e03a09b4494e919e088513f0;p=linux-beck.git [PATCH] savagefb: Remove NULL check Remove unnecessary NULL check. Signed-off-by: Antonino Daplas Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/video/savage/savagefb-i2c.c b/drivers/video/savage/savagefb-i2c.c index 00719a91479f..21debed863ac 100644 --- a/drivers/video/savage/savagefb-i2c.c +++ b/drivers/video/savage/savagefb-i2c.c @@ -273,8 +273,7 @@ int savagefb_probe_i2c_connector(struct fb_info *info, u8 **out_edid) } } - if (out_edid) - *out_edid = edid; + *out_edid = edid; return (edid) ? 0 : 1; }