From f22dede3ce172846bcd8917ab1feebcef744ab0b Mon Sep 17 00:00:00 2001 From: MrKevinWeiss Date: Thu, 11 Feb 2021 09:30:46 +0100 Subject: [PATCH] test/periph_ptp_clock: Remove redundant function --- tests/periph_ptp_clock/main.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/periph_ptp_clock/main.c b/tests/periph_ptp_clock/main.c index f3afc03b73..22f82464d2 100644 --- a/tests/periph_ptp_clock/main.c +++ b/tests/periph_ptp_clock/main.c @@ -46,16 +46,6 @@ static mutex_t sync_mutex = MUTEX_INIT_LOCKED; static atomic_uint_least64_t timestamp; -static inline void print_s64_dec(int64_t _num) -{ - uint64_t num = _num; - if (_num < 0) { - print_str("-"); - num = -_num; - } - print_u64_dec(num); -} - static void speed_adj_cb(void *arg, int chan) { (void)arg;