aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorChristophe Lombard <clombard@linux.ibm.com>2023-06-20 16:52:04 +0200
committerReza Arbab <arbab@linux.ibm.com>2023-09-12 14:22:11 -0500
commita55d0672d62aaf6eb77dcbc6461d35b751b56c41 (patch)
treeed71ba80f08edfa9a1403a6d53fc2dcb0e58242e /core
parenta4352cee15e3e152bb2484fe1f0cf7595d9fbc4f (diff)
downloadskiboot-a55d0672d62aaf6eb77dcbc6461d35b751b56c41.zip
skiboot-a55d0672d62aaf6eb77dcbc6461d35b751b56c41.tar.gz
skiboot-a55d0672d62aaf6eb77dcbc6461d35b751b56c41.tar.bz2
pldm: Export logging feature
To retrieve specific log traces from the external library: libmctp, we need to export the logging api. Signed-off-by: Christophe Lombard <clombard@linux.ibm.com> Reviewed-by: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Reza Arbab <arbab@linux.ibm.com>
Diffstat (limited to 'core')
-rw-r--r--core/console-log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/console-log.c b/core/console-log.c
index 21a1442..a0d1176 100644
--- a/core/console-log.c
+++ b/core/console-log.c
@@ -15,7 +15,7 @@
#include "timebase.h"
#include <debug_descriptor.h>
-static int vprlog(int log_level, const char *fmt, va_list ap)
+int vprlog(int log_level, const char *fmt, va_list ap)
{
int count;
char buffer[320];