From: Sachin Kamat Date: Wed, 25 Sep 2013 11:29:50 +0000 (+0530) Subject: video: smscufx: Use NULL instead of 0 X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=9aae307c6a484b373892d5bec153a7be7e050868;p=deliverable%2Flinux.git video: smscufx: Use NULL instead of 0 'info' is a pointer. Use NULL instead of 0. Signed-off-by: Sachin Kamat Cc: Steve Glendinning Signed-off-by: Tomi Valkeinen --- diff --git a/drivers/video/smscufx.c b/drivers/video/smscufx.c index e188ada2ffd1..d513ed6a49f2 100644 --- a/drivers/video/smscufx.c +++ b/drivers/video/smscufx.c @@ -1147,7 +1147,7 @@ static void ufx_free_framebuffer_work(struct work_struct *work) fb_destroy_modelist(&info->modelist); - dev->info = 0; + dev->info = NULL; /* Assume info structure is freed after this point */ framebuffer_release(info);