From 1329f9647ca392450f25108446acba6421175084 Mon Sep 17 00:00:00 2001 From: "Ying-Chun Liu (PaulLiu)" Date: Tue, 23 Apr 2019 10:25:39 +0100 Subject: [PATCH] plat: imx8mm: Add imx8mm_private.h to the build Allows for exporting of FIP related methods cleanly in a private header. Signed-off-by: Bryan O'Donoghue Signed-off-by: Ying-Chun Liu (PaulLiu) Change-Id: I8523f1370312ed22ff7ca710cd916be52f725e3c --- plat/imx/imx8m/imx8mm/include/imx8mm_private.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 plat/imx/imx8m/imx8mm/include/imx8mm_private.h diff --git a/plat/imx/imx8m/imx8mm/include/imx8mm_private.h b/plat/imx/imx8m/imx8mm/include/imx8mm_private.h new file mode 100644 index 000000000..52d13f031 --- /dev/null +++ b/plat/imx/imx8m/imx8mm/include/imx8mm_private.h @@ -0,0 +1,15 @@ +/* + * Copyright (c) 2021, ARM Limited and Contributors. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + */ + +#ifndef IMX8MM_PRIVATE_H +#define IMX8MM_PRIVATE_H + +/******************************************************************************* + * Function and variable prototypes + ******************************************************************************/ +void plat_imx8mm_io_setup(void); + +#endif /* IMX8MM_PRIVATE_H */