diff options
author | Colin Ian King <colin.king@canonical.com> | 2021-09-26 00:54:36 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2022-01-30 19:58:32 +0100 |
commit | 6a3827ea4e2bccf89aa74654afbaf627e3dc64c9 (patch) | |
tree | 98f924785f90ccb50ed0060c592ff7c9873e69ad /drivers/video/fbdev/pxa168fb.c | |
parent | video: fbdev: atmel_lcdfb: fix an error code in atmel_lcdfb_probe() (diff) | |
download | linux-6a3827ea4e2bccf89aa74654afbaf627e3dc64c9.tar.xz linux-6a3827ea4e2bccf89aa74654afbaf627e3dc64c9.zip |
video: fbdev: pxa168fb: Initialize pointers with NULL and not plain integer 0
Pointers info and fbi are being initialized with plain integer zeros. Fix
this by initializing them with NULLs.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'drivers/video/fbdev/pxa168fb.c')
-rw-r--r-- | drivers/video/fbdev/pxa168fb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/fbdev/pxa168fb.c b/drivers/video/fbdev/pxa168fb.c index 35cf806a9219..c25739f6934d 100644 --- a/drivers/video/fbdev/pxa168fb.c +++ b/drivers/video/fbdev/pxa168fb.c @@ -593,8 +593,8 @@ static void pxa168fb_init_mode(struct fb_info *info, static int pxa168fb_probe(struct platform_device *pdev) { struct pxa168fb_mach_info *mi; - struct fb_info *info = 0; - struct pxa168fb_info *fbi = 0; + struct fb_info *info = NULL; + struct pxa168fb_info *fbi = NULL; struct resource *res; struct clk *clk; int irq, ret; |