summaryrefslogtreecommitdiff
path: root/plat/common/platform_helpers_default.c
diff options
context:
space:
mode:
Diffstat (limited to 'plat/common/platform_helpers_default.c')
-rw-r--r--plat/common/platform_helpers_default.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/plat/common/platform_helpers_default.c b/plat/common/platform_helpers_default.c
index 597a5850..ce1a7317 100644
--- a/plat/common/platform_helpers_default.c
+++ b/plat/common/platform_helpers_default.c
@@ -12,6 +12,8 @@
*/
#pragma weak plat_error_handler
+#pragma weak bl1_plat_handle_pre_image_load
+#pragma weak bl1_plat_handle_post_image_load
#pragma weak bl2_plat_preload_setup
#pragma weak bl2_plat_handle_pre_image_load
#pragma weak bl2_plat_handle_post_image_load
@@ -23,6 +25,16 @@ void __dead2 plat_error_handler(int err)
wfi();
}
+int bl1_plat_handle_pre_image_load(void)
+{
+ return 0;
+}
+
+int bl1_plat_handle_post_image_load(void)
+{
+ return 0;
+}
+
void bl2_plat_preload_setup(void)
{
}