Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9b37a8a7 authored by Heba Aamer's avatar Heba Aamer Committed by Greg Kroah-Hartman
Browse files

staging: fbtft: fix do not initialise statics to 0 or NULL



This patch fixes the following checkpatch.pl error:
fix do not initialise statics to 0 or NULL

Signed-off-by: default avatarHeba Aamer <heba93aamer@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8ccf1553
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@
#define TXBUFLEN       (84*6)
#define DEFAULT_GAMMA  "40" /* gamma is used to control contrast in this driver */

static unsigned tc = 0;
static unsigned tc;
module_param(tc, uint, 0);
MODULE_PARM_DESC(tc, "TC[1:0] Temperature coefficient: 0-3 (default: 0)");