diff options
| author | Rafael Silva <[email protected]> | 2021-06-11 21:01:12 +0100 |
|---|---|---|
| committer | Rafael Silva <[email protected]> | 2021-06-11 21:01:12 +0100 |
| commit | 71aae2743c2e3704411c2c6cbab3cbcb0f8144d1 (patch) | |
| tree | fc9c64267e1529786df37b5c95c489aacdc1aa18 | |
| parent | bcd3e31bd678053918898a29136cf787e72a534b (diff) | |
bsp: same70_xplained: fix unused variable warning
Signed-off-by: Rafael Silva <[email protected]>
| -rw-r--r-- | hw/bsp/same70_xplained/same70_xplained.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/bsp/same70_xplained/same70_xplained.c b/hw/bsp/same70_xplained/same70_xplained.c index fb8855f52..e34b5d35d 100644 --- a/hw/bsp/same70_xplained/same70_xplained.c +++ b/hw/bsp/same70_xplained/same70_xplained.c @@ -52,6 +52,7 @@ static volatile bool uart_busy = false; static void tx_cb_EDBG_COM(const struct usart_async_descriptor *const io_descr) { + (void) io_descr; uart_busy = false; } |
