Skip to content

Commit bbeb1f8

Browse files
committed
Fixup the wrong define
Signed-off-by: Jakub Duchniewicz <[email protected]>
1 parent 3f2bc41 commit bbeb1f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

loader/src/uart.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ void putc(uint8_t ch)
169169
while ((*UART_REG(ULSR) & ULSR_THRE) == 0);
170170
*UART_REG(UTHR) = ch;
171171
}
172-
#elif defined(BOARD_rock3b)
172+
#elif defined(CONFIG_PLAT_RK3568)
173173
#define UART_BASE 0xfe660000
174174
#define UTHR 0x0
175175
#define ULSR 0x14

0 commit comments

Comments
 (0)