Skip to content
Snippets Groups Projects
Commit c90beea2 authored by Joerg Roedel's avatar Joerg Roedel Committed by Borislav Petkov
Browse files

x86/boot/compressed: Fix debug_puthex() parameter type


In the CONFIG_X86_VERBOSE_BOOTUP=Y case, the debug_puthex() macro just
turns into __puthex(), which takes 'unsigned long' as parameter.

But in the CONFIG_X86_VERBOSE_BOOTUP=N case, it is a function which
takes 'unsigned char *', causing compile warnings when the function is
used. Fix the parameter type to get rid of the warnings.

Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
Signed-off-by: default avatarBorislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20200319091407.1481-11-joro@8bytes.org
parent bac59d18
No related branches found
No related tags found
No related merge requests found
...@@ -59,7 +59,7 @@ void __puthex(unsigned long value); ...@@ -59,7 +59,7 @@ void __puthex(unsigned long value);
static inline void debug_putstr(const char *s) static inline void debug_putstr(const char *s)
{ } { }
static inline void debug_puthex(const char *s) static inline void debug_puthex(unsigned long value)
{ } { }
#define debug_putaddr(x) /* */ #define debug_putaddr(x) /* */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment