diff options
| author | HiFiPhile <[email protected]> | 2026-04-29 22:00:05 +0200 |
|---|---|---|
| committer | HiFiPhile <[email protected]> | 2026-04-29 22:00:05 +0200 |
| commit | 4722252558d4b2a5d77fff7a59ab9c9e51befe47 (patch) | |
| tree | bbc24fea07a9b3aa3b83f48fdd125334a3a39e51 /hw/bsp/mm32 | |
| parent | 939c2f91c200db2bf9874c2e6c50b3530f8a6725 (diff) | |
ensure board_uart_write return -1 on default
Signed-off-by: HiFiPhile <[email protected]>
Diffstat (limited to 'hw/bsp/mm32')
| -rw-r--r-- | hw/bsp/mm32/family.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/bsp/mm32/family.c b/hw/bsp/mm32/family.c index 14a17f6c5..1538181dc 100644 --- a/hw/bsp/mm32/family.c +++ b/hw/bsp/mm32/family.c @@ -167,7 +167,7 @@ int board_uart_write(void const* buf, int len) { #else (void) buf; (void) len; - return 0; + return -1; #endif } |
