aboutsummaryrefslogtreecommitdiffstats
path: root/include/event.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-08-21 21:16:57 -0600
committerTom Rini <trini@konsulko.com>2023-08-31 13:16:54 -0400
commit6c4cad74382aed5d6bd08b4a62b8747c98310dea (patch)
tree813dcb4556d12782a448468ae259c76a48b044fd /include/event.h
parentf72d0d4a2f9a2d05ebeefb583992cc620f7c4c2d (diff)
downloadu-boot-6c4cad74382aed5d6bd08b4a62b8747c98310dea.tar.gz
event: Rename EVENT_SPY to EVENT_SPY_FULL
The new name makes it clearer that this is for a full spy, with access to the context and the event data. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/event.h')
-rw-r--r--include/event.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/event.h b/include/event.h
index 062b5847897..b2cfd65c9f8 100644
--- a/include/event.h
+++ b/include/event.h
@@ -195,7 +195,7 @@ static inline const char *event_spy_id(struct evspy_info *spy)
* away the linker-list entry sometimes, e.g. with the EVT_FT_FIXUP entry in
* vbe_simple.c - so for now, make it global.
*/
-#define EVENT_SPY(_type, _func) \
+#define EVENT_SPY_FULL(_type, _func) \
__used ll_entry_declare(struct evspy_info, _type ## _3_ ## _func, \
evspy_info) = _ESPY_REC(_type, _func)