From: Simon Glass Date: Sun, 10 Nov 2013 17:27:07 +0000 (-0700) Subject: sandbox: Add a prototype for cleanup_before_linux() X-Git-Tag: v2014.01-rc3~13 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b88eb329ce45c0c0f5471c8624f47bac35dd466e;p=oweals%2Fu-boot.git sandbox: Add a prototype for cleanup_before_linux() This function is defined but has no prototype declaration. Add it. Signed-off-by: Simon Glass Signed-off-by: Simon Glass --- diff --git a/arch/sandbox/include/asm/u-boot-sandbox.h b/arch/sandbox/include/asm/u-boot-sandbox.h index bed720cf81..5707c2710d 100644 --- a/arch/sandbox/include/asm/u-boot-sandbox.h +++ b/arch/sandbox/include/asm/u-boot-sandbox.h @@ -23,4 +23,6 @@ int dram_init(void); int sandbox_early_getopt_check(void); int sandbox_main_loop_init(void); +int cleanup_before_linux(void); + #endif /* _U_BOOT_SANDBOX_H_ */