From c9d9bfab924244da285895d1d594900e8de303fe Mon Sep 17 00:00:00 2001 From: Sebastien COUDREAU Date: Wed, 1 Dec 2021 17:10:31 +0100 Subject: [PATCH] Remove unused-parameter errors when LOGGER=SWO --- hw/bsp/board.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/bsp/board.c b/hw/bsp/board.c index 6a26f55b7..98addca99 100644 --- a/hw/bsp/board.c +++ b/hw/bsp/board.c @@ -126,6 +126,8 @@ TU_ATTR_USED int sys_write (int fhdl, const void *buf, size_t count) TU_ATTR_USED int sys_read (int fhdl, char *buf, size_t count) { (void) fhdl; + (void) buf; + (void) count; return 0; }