Skip to content

Commit 48ad280

Browse files
committed
Linting
1 parent 047502a commit 48ad280

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

runtime/platform/zephyr.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@
1818
void et_pal_init(void) {}
1919

2020
ET_NORETURN void et_pal_abort(void) {
21-
k_panic();
22-
// k_panic() should never return, but ensure compiler knows this
23-
while (1) {
24-
/* Never reached */
25-
}
21+
k_panic();
22+
// k_panic() should never return, but ensure compiler knows this
23+
while (1) {
24+
/* Never reached */
25+
}
2626
}
2727

2828
et_timestamp_t et_pal_current_ticks(void) {
29-
return k_uptime_ticks();
29+
return k_uptime_ticks();
3030
}
3131

3232
et_tick_ratio_t et_pal_ticks_to_ns_multiplier(void) {
33-
return { NSEC_PER_SEC, sys_clock_hw_cycles_per_sec() };
33+
return {NSEC_PER_SEC, sys_clock_hw_cycles_per_sec()};
3434
}
3535

3636
void et_pal_emit_log_message(
@@ -41,7 +41,7 @@ void et_pal_emit_log_message(
4141
ET_UNUSED size_t line,
4242
const char* message,
4343
ET_UNUSED size_t length) {
44-
printk("%s\n", message);
44+
printk("%s\n", message);
4545
}
4646

4747
void* et_pal_allocate(size_t size) {
@@ -50,4 +50,4 @@ void* et_pal_allocate(size_t size) {
5050

5151
void et_pal_free(void* ptr) {
5252
k_free(ptr);
53-
}
53+
}

0 commit comments

Comments
 (0)