1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu: atmega_common: rtt: Fix vera warnings

Signed-off-by: Gerson Fernando Budke <nandojve@gmail.com>
This commit is contained in:
Gerson Fernando Budke 2023-06-30 22:41:16 +02:00
parent 783afbc666
commit f87cb3fc36

View File

@ -197,15 +197,15 @@ static inline void _timer_init(void)
static inline uint8_t _rtt_div(uint16_t freq)
{
switch (freq) {
case 32768: return 0x1;
case 4096: return 0x2;
case 1024: return 0x3;
case 512: return 0x4;
case 256: return 0x5;
case 128: return 0x6;
case 32: return 0x7;
default : assert(0);
return 0;
case 32768: return 0x1;
case 4096: return 0x2;
case 1024: return 0x3;
case 512: return 0x4;
case 256: return 0x5;
case 128: return 0x6;
case 32: return 0x7;
default: assert(0);
return 0;
}
}