1 // SPDX-License-Identifier: GPL-2.0+
3 * Command-line access to events
5 * Copyright 2021 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
13 static int do_event_list(struct cmd_tbl *cmdtp, int flag, int argc,
16 event_show_spy_list();
21 #ifdef CONFIG_SYS_LONGHELP
22 static char event_help_text[] =
23 "list - list event spies";
26 U_BOOT_CMD_WITH_SUBCMDS(event, "Events", event_help_text,
27 U_BOOT_SUBCMD_MKENT(list, 1, 1, do_event_list));