event: Correct duplicate log message in event_notify()
Use a different one for each call. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
7f33194132
commit
19efd43b0f
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ int event_notify(enum event_t type, void *data, int size)
|
|||
|
||||
ret = notify_static(&event);
|
||||
if (ret)
|
||||
return log_msg_ret("dyn", ret);
|
||||
return log_msg_ret("sta", ret);
|
||||
|
||||
if (CONFIG_IS_ENABLED(EVENT_DYNAMIC)) {
|
||||
ret = notify_dynamic(&event);
|
||||
|
|
Loading…
Reference in a new issue