summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/samsungypr
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/samsungypr')
-rw-r--r--firmware/target/hosted/samsungypr/ypr0/system-ypr0.c3
-rw-r--r--firmware/target/hosted/samsungypr/ypr1/system-ypr1.c3
2 files changed, 4 insertions, 2 deletions
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)
212 212
213#endif /* HAVE_MULTIDRIVE */ 213#endif /* HAVE_MULTIDRIVE */
214 214
215void hostfs_init(void) 215int hostfs_init(void)
216{ 216{
217 /* Setup GPIO pin for microSD sense, copied from OF */ 217 /* Setup GPIO pin for microSD sense, copied from OF */
218 gpio_control(DEV_CTRL_GPIO_SET_MUX, GPIO_SD_SENSE, CONFIG_DEFAULT, 0); 218 gpio_control(DEV_CTRL_GPIO_SET_MUX, GPIO_SD_SENSE, CONFIG_DEFAULT, 0);
@@ -225,6 +225,7 @@ void hostfs_init(void)
225 "sd thread" IF_PRIO(, PRIORITY_BACKGROUND) IF_COP(, CPU)); 225 "sd thread" IF_PRIO(, PRIORITY_BACKGROUND) IF_COP(, CPU));
226#endif 226#endif
227#endif 227#endif
228 return 0;
228} 229}
229 230
230int hostfs_flush(void) 231int 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)
68 system_reboot(); 68 system_reboot();
69} 69}
70 70
71void hostfs_init() 71int hostfs_init()
72{ 72{
73 /* stub */ 73 /* stub */
74 return 0;
74} 75}
75 76
76int hostfs_flush(void) 77int hostfs_flush(void)