command: Remove the cmd_tbl_t typedef
[oweals/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 #include <command.h>
8
9 int arch_misc_init(void)
10 {
11         return 0;
12 }
13
14 /* This function is needed if CONFIG_CMDLINE is not enabled */
15 int board_run_command(const char *cmdline)
16 {
17         printf("No command line\n");
18
19         return 0;
20 }