blob: dc2d62850d19713adbcbbfec0d53650ff3d6e072 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Matthew McClintock3d403172006-06-28 10:43:36 -05002/*
3 * Copyright 2004 Freescale Semiconductor.
Matthew McClintock3d403172006-06-28 10:43:36 -05004 */
5
6#include <common.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +09007#include <linux/libfdt.h>
Kumar Galad28ced32007-11-29 00:11:44 -06008#include <fdt_support.h>
Andy Fleming96367a32006-09-13 10:33:56 -05009#include "cadmus.h"
10
Kumar Galad28ced32007-11-29 00:11:44 -060011#if defined(CONFIG_OF_BOARD_SETUP)
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090012int ft_board_setup(void *blob, struct bd_info *bd)
Matthew McClintock3d403172006-06-28 10:43:36 -050013{
Kumar Galad28ced32007-11-29 00:11:44 -060014 ft_cpu_setup(blob, bd);
Simon Glass2aec3cc2014-10-23 18:58:47 -060015
16 return 0;
Matthew McClintock3d403172006-06-28 10:43:36 -050017}
18#endif