Commit ffaa31d7 authored by Shailendra Verma's avatar Shailendra Verma Committed by David S. Miller

atm:he - Do not initialise statics to 0.

According to <stdbool.h> false is always '0' and
Static variables are initialised to 0 by GCC.
Signed-off-by: default avatarShailendra Verma <shailendra.capricorn@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 94db13fe
......@@ -117,7 +117,7 @@ static short nvpibits = -1;
static short nvcibits = -1;
static short rx_skb_reserve = 16;
static bool irq_coalesce = true;
static bool sdh = 0;
static bool sdh;
/* Read from EEPROM = 0000 0011b */
static unsigned int readtab[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment