u-boot/arch/arm/mach-stm32mp/stm32mp2/fdt.c

17 lines
359 B
C
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later OR BSD-3-Clause
/*
* Copyright (C) 2023, STMicroelectronics - All Rights Reserved
*/
#include <asm/u-boot.h>
/*
* This function is called right before the kernel is booted. "blob" is the
* device tree that will be passed to the kernel.
*/
int ft_system_setup(void *blob, struct bd_info *bd)
{
return 0;
}