From 07a2696f5dd14a65d6a41c0bbcb7c2263acdbfea Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Tue, 22 Oct 2019 19:19:36 +0200 Subject: [PATCH] drivers/ata8520e: fix potentially unused variables This was reported by scan-build --- drivers/ata8520e/ata8520e.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/drivers/ata8520e/ata8520e.c b/drivers/ata8520e/ata8520e.c index c456dbe35e..af215e3c33 100644 --- a/drivers/ata8520e/ata8520e.c +++ b/drivers/ata8520e/ata8520e.c @@ -210,6 +210,11 @@ static void _status(const ata8520e_t *dev) _print_sigfox_status(sigfox); _print_sigfox_status(sigfox2); } + else { + (void)atmel; + (void)sigfox; + (void)sigfox2; + } } static void _reset(const ata8520e_t *dev)