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.c14
-rw-r--r--firmware/target/hosted/samsungypr/ypr1/system-ypr1.c14
2 files changed, 28 insertions, 0 deletions
diff --git a/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c b/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c
index 6232df4a22..477b71c6a2 100644
--- a/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c
+++ b/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c
@@ -21,9 +21,11 @@
21#include <stdlib.h> 21#include <stdlib.h>
22#include <string.h> 22#include <string.h>
23#include <inttypes.h> 23#include <inttypes.h>
24#include <unistd.h>
24#include "system.h" 25#include "system.h"
25#include "panic.h" 26#include "panic.h"
26#include "debug.h" 27#include "debug.h"
28#include "hostfs.h"
27 29
28#include "ascodec.h" 30#include "ascodec.h"
29#include "gpio-ypr.h" 31#include "gpio-ypr.h"
@@ -59,6 +61,18 @@ void system_exception_wait(void)
59 system_reboot(); 61 system_reboot();
60} 62}
61 63
64void hostfs_init(void)
65{
66 /* stub */
67}
68
69int hostfs_flush(void)
70{
71 sync();
72
73 return 0;
74}
75
62#ifdef HAVE_ADJUSTABLE_CPU_FREQ 76#ifdef HAVE_ADJUSTABLE_CPU_FREQ
63#include <stdio.h> 77#include <stdio.h>
64#include "file.h" 78#include "file.h"
diff --git a/firmware/target/hosted/samsungypr/ypr1/system-ypr1.c b/firmware/target/hosted/samsungypr/ypr1/system-ypr1.c
index 9aa49786f1..7efa73b273 100644
--- a/firmware/target/hosted/samsungypr/ypr1/system-ypr1.c
+++ b/firmware/target/hosted/samsungypr/ypr1/system-ypr1.c
@@ -21,9 +21,11 @@
21#include <stdlib.h> 21#include <stdlib.h>
22#include <string.h> 22#include <string.h>
23#include <inttypes.h> 23#include <inttypes.h>
24#include <unistd.h>
24#include "system.h" 25#include "system.h"
25#include "panic.h" 26#include "panic.h"
26#include "debug.h" 27#include "debug.h"
28#include "hostfs.h"
27 29
28#include "gpio-ypr.h" 30#include "gpio-ypr.h"
29#include "pmu-ypr1.h" 31#include "pmu-ypr1.h"
@@ -65,3 +67,15 @@ void system_exception_wait(void)
65{ 67{
66 system_reboot(); 68 system_reboot();
67} 69}
70
71void hostfs_init()
72{
73 /* stub */
74}
75
76int hostfs_flush(void)
77{
78 sync();
79
80 return 0;
81}