blob: 5ff546f505cca8de243cbb258616b4ebe68d93c7 [file] [log] [blame]
Stefan Roese88dc4092018-08-16 15:27:31 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018 Stefan Roese <sr@denx.de>
4 */
5
6#include <common.h>
7#include <asm/io.h>
8
9int board_early_init_f(void)
10{
11 /*
12 * Nothing to be done here for this board (no UART setup etc)
13 * right now. We might need some pin muxing, so lets keep this
14 * function for now.
15 */
16 return 0;
17}