From 735c41786dfaab3dc65ec831a5ae9f3f2a37fc68 Mon Sep 17 00:00:00 2001 From: Christian Mehlis Date: Mon, 12 Aug 2013 11:23:17 +0200 Subject: [PATCH] remove unused static function --- core/hwtimer.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/core/hwtimer.c b/core/hwtimer.c index 4abbca38ac..6a847dbec9 100644 --- a/core/hwtimer.c +++ b/core/hwtimer.c @@ -52,12 +52,6 @@ static void hwtimer_releasemutex(void* mutex) { mutex_unlock((mutex_t*) mutex); } -static void hwtimer_wakeup(void *ptr) -{ - int pid = (int)ptr; - thread_wakeup(pid); -} - void hwtimer_spin(unsigned long ticks) { unsigned long co = hwtimer_arch_now() + ticks;