]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
event: Rename EVENT_SPY to EVENT_SPY_FULL
authorSimon Glass <sjg@chromium.org>
Tue, 22 Aug 2023 03:16:57 +0000 (21:16 -0600)
committerTom Rini <trini@konsulko.com>
Thu, 31 Aug 2023 17:16:54 +0000 (13:16 -0400)
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>
boot/vbe_request.c
boot/vbe_simple_os.c
include/event.h

index 312edfa2bdb536c466d675f661e5e57186fe5c22..2f218d4bf97cde87c0b6b126f760ea019236125a 100644 (file)
@@ -230,4 +230,4 @@ static int bootmeth_vbe_ft_fixup(void *ctx, struct event *event)
 
        return 0;
 }
-EVENT_SPY(EVT_FT_FIXUP, bootmeth_vbe_ft_fixup);
+EVENT_SPY_FULL(EVT_FT_FIXUP, bootmeth_vbe_ft_fixup);
index 8c641ec07e2d8ed2b324279540e324860c876e9c..3285e438a56830e1391bd006cf015efeb8554214 100644 (file)
@@ -109,4 +109,4 @@ static int bootmeth_vbe_simple_ft_fixup(void *ctx, struct event *event)
 
        return 0;
 }
-EVENT_SPY(EVT_FT_FIXUP, bootmeth_vbe_simple_ft_fixup);
+EVENT_SPY_FULL(EVT_FT_FIXUP, bootmeth_vbe_simple_ft_fixup);
index 062b5847897e2b78c51a939d735fa66f20fa8572..b2cfd65c9f8b5d13f14e43220870ee6f0e27342c 100644 (file)
@@ -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)