blob: 31b127b465aac2082a49c0e7af77ab6dc437eecf [file] [log] [blame]
Patrice Chotardd29531c2023-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
Tom Rini34d4a822023-11-13 09:07:23 -05006#include <asm/u-boot.h>
Patrice Chotardd29531c2023-10-27 16:43:04 +02007
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