[PATCH] uml: use LIST_HEAD where possible

A couple of list_head declarations can be improved through the use of
LIST_HEAD().

Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Este commit está contenido en:
Jeff Dike
2007-02-10 01:44:04 -08:00
cometido por Linus Torvalds
padre c862fc32a3
commit c59bce6262
Se han modificado 2 ficheros con 2 adiciones y 2 borrados

Ver fichero

@@ -130,7 +130,7 @@ static int port_accept(struct port_list *port)
}
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)
{