Skip to content

Commit

Permalink
[PATCH] uml: make two variables static
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jeff Dike authored and Linus Torvalds committed Feb 11, 2007
1 parent 84f48d4 commit d832fc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/um/drivers/port_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit d832fc6

Please sign in to comment.