summaryrefslogtreecommitdiffstats
path: root/include/hab.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/hab.h')
-rw-r--r--include/hab.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/hab.h b/include/hab.h
index 411e995db3..818d7ca1c5 100644
--- a/include/hab.h
+++ b/include/hab.h
@@ -19,9 +19,14 @@
#define __HABV4_H
#ifdef CONFIG_HABV4
-int habv4_get_status(void);
+int imx28_hab_get_status(void);
+int imx6_hab_get_status(void);
#else
-static inline int habv4_get_status(void)
+static inline int imx28_hab_get_status(void)
+{
+ return -EPERM;
+}
+static inline int imx6_hab_get_status(void)
{
return -EPERM;
}