From: Jeff Dike A couple of list_head declarations can be improved through the use of LIST_HEAD(). Signed-off-by: Jeff Dike Cc: Paolo 'Blaisorblade' Giarrusso Signed-off-by: Andrew Morton --- arch/um/drivers/mconsole_kern.c | 2 +- arch/um/drivers/port_kern.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff -puN arch/um/drivers/mconsole_kern.c~uml-use-list_head-where-possible arch/um/drivers/mconsole_kern.c --- a/arch/um/drivers/mconsole_kern.c~uml-use-list_head-where-possible +++ a/arch/um/drivers/mconsole_kern.c @@ -371,7 +371,7 @@ struct unplugged_pages { static DECLARE_MUTEX(plug_mem_mutex); static unsigned long long unplugged_pages_count = 0; -static struct list_head unplugged_pages = LIST_HEAD_INIT(unplugged_pages); +static LIST_HEAD(unplugged_pages); static int unplug_index = UNPLUGGED_PER_PAGE; static int mem_config(char *str, char **error_out) diff -puN arch/um/drivers/port_kern.c~uml-use-list_head-where-possible arch/um/drivers/port_kern.c --- a/arch/um/drivers/port_kern.c~uml-use-list_head-where-possible +++ a/arch/um/drivers/port_kern.c @@ -130,7 +130,7 @@ static int port_accept(struct port_list } static DECLARE_MUTEX(ports_sem); -static struct list_head ports = LIST_HEAD_INIT(ports); +static LIST_HEAD(ports); void port_work_proc(struct work_struct *unused) { _