mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-03 18:10:13 +00:00
13 lines
249 B
C
13 lines
249 B
C
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
/*
|
||
|
* Copyright 2023 Toradex - https://www.toradex.com/
|
||
|
*/
|
||
|
|
||
|
#include "common_fdt.h"
|
||
|
#include <fdt_support.h>
|
||
|
|
||
|
int ft_system_setup(void *blob, struct bd_info *bd)
|
||
|
{
|
||
|
return fdt_fixup_msmc_ram_k3(blob);
|
||
|
}
|