]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: flexfb: Remove initialization to 0
authorMauro Stettler <mauro.stettler@gmail.com>
Sun, 25 Jan 2015 11:26:17 +0000 (20:26 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 28 Jan 2015 19:22:20 +0000 (11:22 -0800)
(the initial post had a typo in the short summary, reposting)

This fixes some of the code style issues in the flexfb driver by removing
unnecessary initializations of static variables to 0 or to NULL.

Signed-off-by: Mauro Stettler <mauro.stettler@gmail.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Noralf Tronnes <notro@tronnes.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/fbtft/flexfb.c

index 45574a0c6a15bba9d5d9d818364c97d7ed9ddf2b..4eec888a45b0b390fd7dbf8287bd71bb3aface22 100644 (file)
 #define DRVNAME            "flexfb"
 
 
-static char *chip = NULL;
+static char *chip;
 module_param(chip, charp, 0);
 MODULE_PARM_DESC(chip, "LCD controller");
 
-static unsigned int width = 0;
+static unsigned int width;
 module_param(width, uint, 0);
 MODULE_PARM_DESC(width, "Display width");
 
-static unsigned int height = 0;
+static unsigned int height;
 module_param(height, uint, 0);
 MODULE_PARM_DESC(height, "Display height");
 
 static int init[512];
-static int init_num = 0;
+static int init_num;
 module_param_array(init, int, &init_num, 0);
 MODULE_PARM_DESC(init, "Init sequence");
 
-static unsigned int setaddrwin = 0;
+static unsigned int setaddrwin;
 module_param(setaddrwin, uint, 0);
 MODULE_PARM_DESC(setaddrwin, "Which set_addr_win() implementation to use");
 
@@ -60,17 +60,17 @@ static unsigned int regwidth = 8;
 module_param(regwidth, uint, 0);
 MODULE_PARM_DESC(regwidth, "Width of controller register (default: 8)");
 
-static bool nobacklight = false;
+static bool nobacklight;
 module_param(nobacklight, bool, 0);
 MODULE_PARM_DESC(nobacklight, "Turn off backlight functionality.");
 
-static bool latched = false;
+static bool latched;
 module_param(latched, bool, 0);
 MODULE_PARM_DESC(latched, "Use with latched 16-bit databus");
 
 
-static int *initp = NULL;
-static int initp_num = 0;
+static int *initp;
+static int initp_num;
 
 /* default init sequences */
 static int st7735r_init[] = { \