payloads/libpayload: Add spaces around '=='
Change-Id: Ie1da925aceb01c2d21b472bf171000803004578f Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/25856 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
committed by
Patrick Georgi
parent
12f345d671
commit
00877386ee
@@ -149,14 +149,14 @@ int PDC_get_key(void)
|
||||
|
||||
#if IS_ENABLED(CONFIG_LP_PC_KEYBOARD)
|
||||
if ((curses_flags & F_ENABLE_CONSOLE) &&
|
||||
keyboard_havechar() && (c==0)) {
|
||||
keyboard_havechar() && (c == 0)) {
|
||||
c = keyboard_getchar();
|
||||
}
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_LP_SERIAL_CONSOLE)
|
||||
if ((curses_flags & F_ENABLE_SERIAL) &&
|
||||
serial_havechar() && (c==0)) {
|
||||
serial_havechar() && (c == 0)) {
|
||||
c = cook_serial(serial_getchar());
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user