diff options
author | Simon Glass <sjg@chromium.org> | 2013-11-10 10:27:07 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-01-08 17:26:01 -0700 |
commit | b88eb329ce45c0c0f5471c8624f47bac35dd466e (patch) | |
tree | 4d9061f082cd293f3bf23d490daa8c2669344719 /arch/sandbox | |
parent | ed3f5a30a7bc4254e516caad7f01baf4596359b7 (diff) |
sandbox: Add a prototype for cleanup_before_linux()
This function is defined but has no prototype declaration. Add it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox')
-rw-r--r-- | arch/sandbox/include/asm/u-boot-sandbox.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sandbox/include/asm/u-boot-sandbox.h b/arch/sandbox/include/asm/u-boot-sandbox.h index bed720cf81b..5707c2710d9 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_ */ |