1 // SPDX-License-Identifier: GPL-2.0+
3 * Command-line access to events
5 * Copyright 2021 Google LLC
12 static int do_event_list(struct cmd_tbl *cmdtp, int flag, int argc,
15 event_show_spy_list();
20 U_BOOT_LONGHELP(event,
21 "list - list event spies");
23 U_BOOT_CMD_WITH_SUBCMDS(event, "Events", event_help_text,
24 U_BOOT_SUBCMD_MKENT(list, 1, 1, do_event_list));