blob: ee570863bb706ddec6682250def2785b22c27ce0 [file] [log] [blame]
Patrice Chotard01a70192023-10-27 16:43:04 +02001// SPDX-License-Identifier: GPL-2.0-or-later OR BSD-3-Clause
2/*
3 * Copyright (C) 2023, STMicroelectronics - All Rights Reserved
4 */
5
6#include <common.h>
7
8/*
9 * This function is called right before the kernel is booted. "blob" is the
10 * device tree that will be passed to the kernel.
11 */
12int ft_system_setup(void *blob, struct bd_info *bd)
13{
14 return 0;
15}
16