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