From 05999ed86d55ca51a9371b0253cdabd734539d1f Mon Sep 17 00:00:00 2001 From: Thomas Martitz Date: Mon, 3 Mar 2014 11:19:56 +0100 Subject: Fix hostfs_init() return value. Change-Id: Ic8048e3fa0075de234e8879ba9faad101168bf09 --- firmware/export/hostfs.h | 2 +- firmware/target/hosted/android/system-android.c | 3 ++- firmware/target/hosted/samsungypr/ypr0/system-ypr0.c | 3 ++- firmware/target/hosted/samsungypr/ypr1/system-ypr1.c | 3 ++- firmware/target/hosted/sdl/system-sdl.c | 3 ++- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/firmware/export/hostfs.h b/firmware/export/hostfs.h index d6f571a929..bbadecec31 100644 --- a/firmware/export/hostfs.h +++ b/firmware/export/hostfs.h @@ -33,7 +33,7 @@ #endif #include "config.h" -extern void hostfs_init(void); +extern int hostfs_init(void); extern int hostfs_flush(void); #ifdef HAVE_HOTSWAP diff --git a/firmware/target/hosted/android/system-android.c b/firmware/target/hosted/android/system-android.c index 313bfbcd62..d13b8d6462 100644 --- a/firmware/target/hosted/android/system-android.c +++ b/firmware/target/hosted/android/system-android.c @@ -67,9 +67,10 @@ void system_init(void) telephony_init_device(); } -void hostfs_init(void) +int hostfs_init(void) { /* stub */ + return 0; } int hostfs_flush(void) diff --git a/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c b/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c index e36fbed145..a21c82b1f2 100644 --- a/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c +++ b/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c @@ -212,7 +212,7 @@ static void NORETURN_ATTR sd_thread(void) #endif /* HAVE_MULTIDRIVE */ -void hostfs_init(void) +int hostfs_init(void) { /* Setup GPIO pin for microSD sense, copied from OF */ gpio_control(DEV_CTRL_GPIO_SET_MUX, GPIO_SD_SENSE, CONFIG_DEFAULT, 0); @@ -225,6 +225,7 @@ void hostfs_init(void) "sd thread" IF_PRIO(, PRIORITY_BACKGROUND) IF_COP(, CPU)); #endif #endif + return 0; } int hostfs_flush(void) diff --git a/firmware/target/hosted/samsungypr/ypr1/system-ypr1.c b/firmware/target/hosted/samsungypr/ypr1/system-ypr1.c index 7efa73b273..6b7d74b5f7 100644 --- a/firmware/target/hosted/samsungypr/ypr1/system-ypr1.c +++ b/firmware/target/hosted/samsungypr/ypr1/system-ypr1.c @@ -68,9 +68,10 @@ void system_exception_wait(void) system_reboot(); } -void hostfs_init() +int hostfs_init() { /* stub */ + return 0; } int hostfs_flush(void) diff --git a/firmware/target/hosted/sdl/system-sdl.c b/firmware/target/hosted/sdl/system-sdl.c index 25e77c22a2..fdf79d9333 100644 --- a/firmware/target/hosted/sdl/system-sdl.c +++ b/firmware/target/hosted/sdl/system-sdl.c @@ -289,9 +289,10 @@ void system_exception_wait(void) system_reboot(); } -void hostfs_init(void) +int hostfs_init(void) { /* stub */ + return 0; } #ifdef HAVE_STORAGE_FLUSH -- cgit v1.2.3