From: Jeff Dike Date: Sat, 10 Feb 2007 09:44:01 +0000 (-0800) Subject: [PATCH] uml: make two variables static X-Git-Tag: v2.6.21-rc1~274^2~420 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=d832fc60d533d52da7170cf5f95271c331259bca;p=~shefty%2Frdma-dev.git [PATCH] uml: make two variables static Make a couple of variables static. Signed-off-by: Jeff Dike Cc: Paolo 'Blaisorblade' Giarrusso Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/um/drivers/port_kern.c b/arch/um/drivers/port_kern.c index 6dfe632f1c1..c688da72217 100644 --- a/arch/um/drivers/port_kern.c +++ b/arch/um/drivers/port_kern.c @@ -129,8 +129,8 @@ static int port_accept(struct port_list *port) return(ret); } -DECLARE_MUTEX(ports_sem); -struct list_head ports = LIST_HEAD_INIT(ports); +static DECLARE_MUTEX(ports_sem); +static struct list_head ports = LIST_HEAD_INIT(ports); void port_work_proc(struct work_struct *unused) {