lkml.org 
[lkml]   [2015]   [May]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] char:agp - Do not initialise statics to 0.
Date
Static variables are initialised to 0 by GCC.
Fixes the following checkpatch error:
ERROR: do not initialise statics to 0 or NULL
FILE: drivers/char/agp/sis-agp.c:20:
static bool agp_sis_force_delay = false;

Signed-off-by: Shailendra Verma <shailendra.capricorn@gmail.com>
---
drivers/char/agp/sis-agp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/char/agp/sis-agp.c b/drivers/char/agp/sis-agp.c
index 2c74038..c0b363a 100644
--- a/drivers/char/agp/sis-agp.c
+++ b/drivers/char/agp/sis-agp.c
@@ -17,7 +17,7 @@
#define PCI_DEVICE_ID_SI_662 0x0662
#define PCI_DEVICE_ID_SI_671 0x0671

-static bool agp_sis_force_delay = 0;
+static bool agp_sis_force_delay;
static int agp_sis_agp_spec = -1;

static int sis_fetch_size(void)
--
1.7.9.5


\
 
 \ /
  Last update: 2015-05-25 21:21    [W:0.032 / U:1.552 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site