From e22d791cf862a5156a05bc4c55f0a90200ec22e6 Mon Sep 17 00:00:00 2001 From: notaz Date: Mon, 5 Nov 2012 02:41:43 +0200 Subject: [PATCH] add dummy platform file --- plat.h | 2 ++ plat_dummy.c | 16 ++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 plat_dummy.c diff --git a/plat.h b/plat.h index 139ea47..51be346 100644 --- a/plat.h +++ b/plat.h @@ -1,6 +1,8 @@ #ifndef LIBPICOFE_PLAT_H #define LIBPICOFE_PLAT_H +#include + #ifdef __cplusplus extern "C" { #endif diff --git a/plat_dummy.c b/plat_dummy.c new file mode 100644 index 0000000..969826c --- /dev/null +++ b/plat_dummy.c @@ -0,0 +1,16 @@ +#include "plat.h" + +struct plat_target plat_target; + +int plat_target_init(void) +{ + return 0; +} + +void plat_target_finish(void) +{ +} + +void plat_target_setup_input(void) +{ +} -- 2.39.2