diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-12-07 12:30:39 -0800 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-12-10 11:33:53 +0200 |
commit | a240af2eb24679f4d27d87281b25faee0a25df1a (patch) | |
tree | ba95df229a1d2e8721be8e63048bb8c57a58f6b9 /drivers/video/console/softcursor.c | |
parent | a2ed00da5047806233e288b991d9be997a5eb214 (diff) | |
download | blackbird-op-linux-a240af2eb24679f4d27d87281b25faee0a25df1a.tar.gz blackbird-op-linux-a240af2eb24679f4d27d87281b25faee0a25df1a.zip |
drivers/video/console/softcursor.c: remove redundant NULL check before kfree()
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/console/softcursor.c')
-rw-r--r-- | drivers/video/console/softcursor.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/video/console/softcursor.c b/drivers/video/console/softcursor.c index 25f835bf3d72..46dd8f5d2e9e 100644 --- a/drivers/video/console/softcursor.c +++ b/drivers/video/console/softcursor.c @@ -35,8 +35,7 @@ int soft_cursor(struct fb_info *info, struct fb_cursor *cursor) dsize = s_pitch * cursor->image.height; if (dsize + sizeof(struct fb_image) != ops->cursor_size) { - if (ops->cursor_src != NULL) - kfree(ops->cursor_src); + kfree(ops->cursor_src); ops->cursor_size = dsize + sizeof(struct fb_image); ops->cursor_src = kmalloc(ops->cursor_size, GFP_ATOMIC); |