Merge tag 'u-boot-amlogic-20200108' of https://gitlab.denx.de/u-boot/custodians/u...
[platform/kernel/u-boot.git] / board / google / chromebook_coral / coral.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2019 Google LLC
4  */
5
6 #include <common.h>
7
8 int arch_misc_init(void)
9 {
10         return 0;
11 }
12
13 /* This function is needed if CONFIG_CMDLINE is not enabled */
14 int board_run_command(const char *cmdline)
15 {
16         printf("No command line\n");
17
18         return 0;
19 }