Patrice Chotard | 01a7019 | 2023-10-27 16:43:04 +0200 | [diff] [blame^] | 1 | // 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 | */ | ||||
12 | int ft_system_setup(void *blob, struct bd_info *bd) | ||||
13 | { | ||||
14 | return 0; | ||||
15 | } | ||||
16 |