mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
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>
This commit is contained in:
parent
f72d0d4a2f
commit
6c4cad7438
3 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue