Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion drivers/timer/nrf_grtc_timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@

static inline uint64_t counter(void)
{
return nrfx_grtc_syscounter_get();
uint64_t now;
nrfx_grtc_syscounter_get(&now);

Check warning on line 92 in drivers/timer/nrf_grtc_timer.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LINE_SPACING

drivers/timer/nrf_grtc_timer.c:92 Missing a blank line after declarations
return now;
}

static inline int get_comparator(uint32_t chan, uint64_t *cc)
Expand Down
Loading