Commit ceeddb4e authored by Sachin Kamat's avatar Sachin Kamat Committed by Tomi Valkeinen

video: udlfb: Use NULL instead of 0

new_back is a pointer. Use NULL instead of 0.
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Cc: Bernie Thompson <bernie@plugable.com>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent d24c815b
......@@ -1166,7 +1166,7 @@ static int dlfb_realloc_framebuffer(struct dlfb_data *dev, struct fb_info *info)
int new_len;
unsigned char *old_fb = info->screen_base;
unsigned char *new_fb;
unsigned char *new_back = 0;
unsigned char *new_back = NULL;
pr_warn("Reallocating framebuffer. Addresses will change!\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment