Patrice Chotard | d29531c | 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 | |
Tom Rini | 34d4a82 | 2023-11-13 09:07:23 -0500 | [diff] [blame] | 6 | #include <asm/u-boot.h> |
Patrice Chotard | d29531c | 2023-10-27 16:43:04 +0200 | [diff] [blame] | 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 | |