summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/samsungypr/ypr1/system-ypr1.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2014-03-03 11:19:56 +0100
committerThomas Martitz <kugel@rockbox.org>2014-03-03 11:19:56 +0100
commit05999ed86d55ca51a9371b0253cdabd734539d1f (patch)
tree5c14017db79cba09bd6cb5d09294e0954ba83fe2 /firmware/target/hosted/samsungypr/ypr1/system-ypr1.c
parent506b8718fc1d3d71b0ea060145d797924c5d0ef9 (diff)
downloadrockbox-05999ed86d55ca51a9371b0253cdabd734539d1f.tar.gz
rockbox-05999ed86d55ca51a9371b0253cdabd734539d1f.zip
Fix hostfs_init() return value.
Change-Id: Ic8048e3fa0075de234e8879ba9faad101168bf09
Diffstat (limited to 'firmware/target/hosted/samsungypr/ypr1/system-ypr1.c')
-rw-r--r--firmware/target/hosted/samsungypr/ypr1/system-ypr1.c3
1 files changed, 2 insertions, 1 deletions
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)