diff options
| author | Tony Lindgren <tony@atomide.com> | 2011-11-07 12:27:23 -0800 | 
|---|---|---|
| committer | Tony Lindgren <tony@atomide.com> | 2011-11-07 12:27:23 -0800 | 
| commit | d30cc16c8e48368e0518f4975a78711e53e14a0f (patch) | |
| tree | 26b57f7ab5a963cc3d6c57dff6951bd930875583 /arch/um/kernel/initrd.c | |
| parent | 41eb2d813f558900884e240c2f723e36c7bd151f (diff) | |
| parent | a1bcc1dcef8451b4291ea2a1b2677cb194102952 (diff) | |
| download | olio-linux-3.10-d30cc16c8e48368e0518f4975a78711e53e14a0f.tar.xz olio-linux-3.10-d30cc16c8e48368e0518f4975a78711e53e14a0f.zip  | |
Merge branch 'fixes-modulesplit' into fixes
Diffstat (limited to 'arch/um/kernel/initrd.c')
| -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 d386c75c88e..10cc18f729f 100644 --- a/arch/um/kernel/initrd.c +++ b/arch/um/kernel/initrd.c @@ -7,12 +7,12 @@  #include "linux/bootmem.h"  #include "linux/initrd.h"  #include "asm/types.h" -#include "initrd.h"  #include "init.h"  #include "os.h"  /* Changed by uml_initrd_setup, which is a setup */  static char *initrd __initdata = NULL; +static int load_initrd(char *filename, void *buf, int size);  static int __init read_initrd(void)  { @@ -62,7 +62,7 @@ __uml_setup("initrd=", uml_initrd_setup,  "    name of the file containing the image.\n\n"  ); -int load_initrd(char *filename, void *buf, int size) +static int load_initrd(char *filename, void *buf, int size)  {  	int fd, n;  |