From 6768ae9c1fb6d400fd311c4fc428d3ee81b75fdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Nohlg=C3=A5rd?= Date: Tue, 5 Jul 2016 23:13:03 +0200 Subject: [PATCH] xtimer: Rename timer_callback_t -> xtimer_callback_t --- sys/include/xtimer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/include/xtimer.h b/sys/include/xtimer.h index f0de04a71c..a5df8c3c6c 100644 --- a/sys/include/xtimer.h +++ b/sys/include/xtimer.h @@ -43,7 +43,7 @@ extern "C" { /** * @brief xtimer callback type */ -typedef void (*timer_callback_t)(void*); +typedef void (*xtimer_callback_t)(void*); /** * @brief xtimer timer structure @@ -52,7 +52,7 @@ typedef struct xtimer { struct xtimer *next; /**< reference to next timer in timer lists */ uint32_t target; /**< lower 32bit absolute target time */ uint32_t long_target; /**< upper 32bit absolute target time */ - timer_callback_t callback; /**< callback function to call when timer + xtimer_callback_t callback; /**< callback function to call when timer expires */ void *arg; /**< argument to pass to callback function */ } xtimer_t;