diff options
author | Antonino A. Daplas <adaplas@gmail.com> | 2006-03-27 04:17:34 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-27 11:44:56 -0500 |
commit | 0e4be28023c14624e03a09b4494e919e088513f0 (patch) | |
tree | 320d6a8026afc683c1eb1e4b6f18c223978aedde /drivers/video | |
parent | 7c518eb84ce75d4c8e8799f4fcad59837f6d1894 (diff) |
[PATCH] savagefb: Remove NULL check
Remove unnecessary NULL check.
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/savage/savagefb-i2c.c | 3 |
1 files changed, 1 insertions, 2 deletions
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) | |||
273 | } | 273 | } |
274 | } | 274 | } |
275 | 275 | ||
276 | if (out_edid) | 276 | *out_edid = edid; |
277 | *out_edid = edid; | ||
278 | 277 | ||
279 | return (edid) ? 0 : 1; | 278 | return (edid) ? 0 : 1; |
280 | } | 279 | } |