2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2006-06-28 15:43:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2004 Freescale Semiconductor.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2018-03-04 16:20:11 +00:00
|
|
|
#include <linux/libfdt.h>
|
2007-11-29 06:11:44 +00:00
|
|
|
#include <fdt_support.h>
|
2006-09-13 15:33:56 +00:00
|
|
|
#include "cadmus.h"
|
|
|
|
|
2007-11-29 06:11:44 +00:00
|
|
|
#if defined(CONFIG_OF_BOARD_SETUP)
|
2020-06-26 06:13:33 +00:00
|
|
|
int ft_board_setup(void *blob, struct bd_info *bd)
|
2006-06-28 15:43:36 +00:00
|
|
|
{
|
2007-11-29 06:11:44 +00:00
|
|
|
ft_cpu_setup(blob, bd);
|
2014-10-24 00:58:47 +00:00
|
|
|
|
|
|
|
return 0;
|
2006-06-28 15:43:36 +00:00
|
|
|
}
|
|
|
|
#endif
|