1 // 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 9 int 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 } 18