diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-02-10 04:44:01 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-11 13:51:21 -0500 |
commit | d832fc60d533d52da7170cf5f95271c331259bca (patch) | |
tree | 2d81c6b6723e34695389019e077b8423406fc26e /arch/um/drivers/port_kern.c | |
parent | 84f48d4f2b511db15fda67fd38462b91abd0af53 (diff) |
[PATCH] uml: make two variables static
Make a couple of variables static.
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>
Diffstat (limited to 'arch/um/drivers/port_kern.c')
-rw-r--r-- | arch/um/drivers/port_kern.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/drivers/port_kern.c b/arch/um/drivers/port_kern.c index 6dfe632f1c14..c688da722177 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) | |||
129 | return(ret); | 129 | return(ret); |
130 | } | 130 | } |
131 | 131 | ||
132 | DECLARE_MUTEX(ports_sem); | 132 | static DECLARE_MUTEX(ports_sem); |
133 | struct list_head ports = LIST_HEAD_INIT(ports); | 133 | static struct list_head ports = LIST_HEAD_INIT(ports); |
134 | 134 | ||
135 | void port_work_proc(struct work_struct *unused) | 135 | void port_work_proc(struct work_struct *unused) |
136 | { | 136 | { |