diff options
Diffstat (limited to 'board/amlogic/p212/p212.c')
-rw-r--r-- | board/amlogic/p212/p212.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/board/amlogic/p212/p212.c b/board/amlogic/p212/p212.c new file mode 100644 index 00000000000..1eeb7f26d88 --- /dev/null +++ b/board/amlogic/p212/p212.c @@ -0,0 +1,21 @@ +/* + * Copyright (C) 2016 BayLibre, SAS + * Author: Neil Armstrong <narmstrong@baylibre.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#include <common.h> +#include <dm.h> +#include <asm/io.h> +#include <asm/arch/gxbb.h> + +int board_init(void) +{ + return 0; +} + +int misc_init_r(void) +{ + return 0; +} |