projects
/
platform
/
kernel
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
5ff546f505cca8de243cbb258616b4ebe68d93c7
[platform/kernel/u-boot.git]
/
board
/
gardena
/
smart-gateway-mt7688
/
board.c
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
}