1
0
Fork 0

[LAPB] net/lapb/lapb_iface.c: use LIST_HEAD instead of LIST_HEAD_INIT

single list_head variable initialized with LIST_HEAD_INIT could almost
always can be replaced with LIST_HEAD declaration, this shrinks the code
and looks better.

Signed-off-by: Denis Cheng <crquan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
Denis Cheng 2007-12-07 00:50:15 -08:00 committed by David S. Miller
parent 1596c97aa8
commit 14d0e7b74e
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@
#include <linux/init.h>
#include <net/lapb.h>
static struct list_head lapb_list = LIST_HEAD_INIT(lapb_list);
static LIST_HEAD(lapb_list);
static DEFINE_RWLOCK(lapb_list_lock);
/*