diff options
author | WANG Cong <xiyou.wangcong@gmail.com> | 2008-04-28 05:13:55 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:28 -0400 |
commit | 3af7cb7bbcf0872b749a32bb48a7bc11f33bcd8c (patch) | |
tree | 66e147f0c29e673bdcfb31a2c22939047a4c51f9 /arch/um/drivers | |
parent | 626c59f5edb284027bfe25cc15e7de2f532090b5 (diff) |
uml: make a function static
arch/um/drivers/chan_kern.c::open_chan() can become static.
Acked-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: WANG Cong <wangcong@zeuux.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/drivers')
-rw-r--r-- | arch/um/drivers/chan_kern.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/drivers/chan_kern.c b/arch/um/drivers/chan_kern.c index db3082b4da46..de22a101ef72 100644 --- a/arch/um/drivers/chan_kern.c +++ b/arch/um/drivers/chan_kern.c | |||
@@ -125,7 +125,7 @@ static int open_one_chan(struct chan *chan) | |||
125 | return 0; | 125 | return 0; |
126 | } | 126 | } |
127 | 127 | ||
128 | int open_chan(struct list_head *chans) | 128 | static int open_chan(struct list_head *chans) |
129 | { | 129 | { |
130 | struct list_head *ele; | 130 | struct list_head *ele; |
131 | struct chan *chan; | 131 | struct chan *chan; |