]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
event: Export event_type_name()
authorSimon Glass <sjg@chromium.org>
Tue, 22 Aug 2023 03:16:53 +0000 (21:16 -0600)
committerTom Rini <trini@konsulko.com>
Thu, 31 Aug 2023 17:16:54 +0000 (13:16 -0400)
Export this function so it can be used with initcall debugging.

Signed-off-by: Simon Glass <sjg@chromium.org>
common/event.c
include/event.h

index 7e2590eb04000b53b4444cd147ece20fb4d6c3cf..55f6932ef62c57fd48f99d443ed355ff969c7484 100644 (file)
@@ -49,7 +49,7 @@ const char *const type_name[] = {
 _Static_assert(ARRAY_SIZE(type_name) == EVT_COUNT, "event type_name size");
 #endif
 
-static const char *event_type_name(enum event_t type)
+const char *event_type_name(enum event_t type)
 {
 #if CONFIG_IS_ENABLED(EVENT_DEBUG)
        return type_name[type];
index 0e3222c2e2436041d4c29eb6baa5e57b2f425e83..062b5847897e2b78c51a939d735fa66f20fa8572 100644 (file)
@@ -230,6 +230,14 @@ void event_show_spy_list(void);
  */
 int event_manual_reloc(void);
 
+/**
+ * event_type_name() - Get the name of an event type
+ *
+ * @type: Type to check
+ * Return: Name of event, or "(unknown)" if not known
+ */
+const char *event_type_name(enum event_t type);
+
 /**
  * event_notify() - notify spies about an event
  *