Simon Glass | c81b460 | 2022-03-04 08:43:06 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Command-line access to events |
| 4 | * |
| 5 | * Copyright 2021 Google LLC |
| 6 | * Written by Simon Glass <sjg@chromium.org> |
| 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <command.h> |
| 11 | #include <event.h> |
| 12 | |
| 13 | static int do_event_list(struct cmd_tbl *cmdtp, int flag, int argc, |
| 14 | char *const argv[]) |
| 15 | { |
| 16 | event_show_spy_list(); |
| 17 | |
| 18 | return 0; |
| 19 | } |
| 20 | |
Tom Rini | 3616218 | 2023-10-07 15:13:08 -0400 | [diff] [blame] | 21 | U_BOOT_LONGHELP(event, |
| 22 | "list - list event spies"); |
Simon Glass | c81b460 | 2022-03-04 08:43:06 -0700 | [diff] [blame] | 23 | |
| 24 | U_BOOT_CMD_WITH_SUBCMDS(event, "Events", event_help_text, |
| 25 | U_BOOT_SUBCMD_MKENT(list, 1, 1, do_event_list)); |