[PATCH] fixup! debug_ll: implement putws_ll
Ahmad Fatoum
a.fatoum at pengutronix.de
Thu Aug 1 05:17:09 PDT 2024
The header doesn't include any headers to define types, so replace
wchar_t with unsigned short to make it includeable everywhere with
minimal impact.
Signed-off-by: Ahmad Fatoum <a.fatoum at pengutronix.de>
---
include/debug_ll.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/debug_ll.h b/include/debug_ll.h
index 5ac8ae12ceb8..1410783b73a4 100644
--- a/include/debug_ll.h
+++ b/include/debug_ll.h
@@ -64,7 +64,7 @@ static inline void puts_ll(const char * str)
}
}
-static inline void putws_ll(const wchar_t * wstr)
+static inline void putws_ll(const unsigned short * wstr)
{
while (*wstr) {
if (*wstr == L'\n')
@@ -81,7 +81,7 @@ static inline void putc_ll(char value)
{
}
-static inline void putws_ll(const wchar_t * wstr)
+static inline void putws_ll(const unsigned short * wstr)
{
}
--
2.39.2
More information about the barebox
mailing list