aboutsummaryrefslogtreecommitdiff
path: root/module/hello/include/mod_hello.h
diff options
context:
space:
mode:
Diffstat (limited to 'module/hello/include/mod_hello.h')
-rw-r--r--module/hello/include/mod_hello.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/module/hello/include/mod_hello.h b/module/hello/include/mod_hello.h
new file mode 100644
index 00000000..07f86aac
--- /dev/null
+++ b/module/hello/include/mod_hello.h
@@ -0,0 +1,24 @@
+
+#ifndef MOD_HELLO_H
+#define MOD_HELLO_H
+
+#include <stdbool.h>
+#include <stdint.h>
+#include <fwk_id.h>
+#include <fwk_macros.h>
+#include <fwk_module.h>
+#include <mod_log.h>
+
+struct mod_hello_module_config {
+
+ const struct mod_hello_reg *hello_reg_val;
+
+ bool initialize_init_complete;
+
+ bool initialize_ref_en;
+
+ fwk_id_t clock_id;
+
+};
+
+#endif /* MOD_HELLO_H */