diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2011-08-18 15:06:59 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2011-11-02 09:15:06 -0400 |
commit | 549e78db9438374cb6a58201cc5f2194b222688f (patch) | |
tree | f3861cd67f320e47b09b4aab321a6432b1a60c2d /arch/um/kernel | |
parent | 0acdbbeb6dd435f5f3f1648fc3a2ab5fd07b5545 (diff) |
um: make load_initrd() static, kill shared/initrd.h
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/um/kernel')
-rw-r--r-- | arch/um/kernel/initrd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/kernel/initrd.c b/arch/um/kernel/initrd.c index d386c75c88eb..10cc18f729fd 100644 --- a/arch/um/kernel/initrd.c +++ b/arch/um/kernel/initrd.c | |||
@@ -7,12 +7,12 @@ | |||
7 | #include "linux/bootmem.h" | 7 | #include "linux/bootmem.h" |
8 | #include "linux/initrd.h" | 8 | #include "linux/initrd.h" |
9 | #include "asm/types.h" | 9 | #include "asm/types.h" |
10 | #include "initrd.h" | ||
11 | #include "init.h" | 10 | #include "init.h" |
12 | #include "os.h" | 11 | #include "os.h" |
13 | 12 | ||
14 | /* Changed by uml_initrd_setup, which is a setup */ | 13 | /* Changed by uml_initrd_setup, which is a setup */ |
15 | static char *initrd __initdata = NULL; | 14 | static char *initrd __initdata = NULL; |
15 | static int load_initrd(char *filename, void *buf, int size); | ||
16 | 16 | ||
17 | static int __init read_initrd(void) | 17 | static int __init read_initrd(void) |
18 | { | 18 | { |
@@ -62,7 +62,7 @@ __uml_setup("initrd=", uml_initrd_setup, | |||
62 | " name of the file containing the image.\n\n" | 62 | " name of the file containing the image.\n\n" |
63 | ); | 63 | ); |
64 | 64 | ||
65 | int load_initrd(char *filename, void *buf, int size) | 65 | static int load_initrd(char *filename, void *buf, int size) |
66 | { | 66 | { |
67 | int fd, n; | 67 | int fd, n; |
68 | 68 | ||