From: Robert P. J. Day Date: Fri, 28 Mar 2008 23:16:39 +0000 (-0700) Subject: lapb: use the shorter LIST_HEAD form for brevity X-Git-Tag: v2.6.25-rc9~99^2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=293a3839304cac32e58929db0c23e00a509fbfc5;p=platform%2Fkernel%2Flinux-3.10.git lapb: use the shorter LIST_HEAD form for brevity Signed-off-by: Robert P. J. Day Signed-off-by: Andrew Morton Signed-off-by: David S. Miller --- diff --git a/drivers/net/wan/lapbether.c b/drivers/net/wan/lapbether.c index fb37b80..824df3b 100644 --- a/drivers/net/wan/lapbether.c +++ b/drivers/net/wan/lapbether.c @@ -58,7 +58,7 @@ struct lapbethdev { struct net_device_stats stats; /* some statistics */ }; -static struct list_head lapbeth_devices = LIST_HEAD_INIT(lapbeth_devices); +static LIST_HEAD(lapbeth_devices); /* ------------------------------------------------------------------------ */