cmd: Fix Kconfig coding style
[u-boot.git] / cmd / event.c
blob00c828757ca923ac7fa0c6957bed824be0832ba5
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Command-line access to events
5 * Copyright 2021 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
7 */
9 #include <command.h>
10 #include <event.h>
12 static int do_event_list(struct cmd_tbl *cmdtp, int flag, int argc,
13 char *const argv[])
15 event_show_spy_list();
17 return 0;
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));