uml: make several things static
Make several things static, because they no longer need to be global. 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>
This commit is contained in:
committed by
Linus Torvalds
parent
1605ec0443
commit
074a0db8e1
@@ -34,7 +34,7 @@
|
||||
|
||||
static struct tty_driver *console_driver;
|
||||
|
||||
void stdio_announce(char *dev_name, int dev)
|
||||
static void stdio_announce(char *dev_name, int dev)
|
||||
{
|
||||
printk(KERN_INFO "Virtual console %d assigned device '%s'\n", dev,
|
||||
dev_name);
|
||||
@@ -158,7 +158,7 @@ static struct console stdiocons = {
|
||||
.index = -1,
|
||||
};
|
||||
|
||||
int stdio_init(void)
|
||||
static int stdio_init(void)
|
||||
{
|
||||
char *new_title;
|
||||
|
||||
|
Reference in New Issue
Block a user