Merge git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6
[cascardo/linux.git] / kernel / semaphore.c
index 1a064ad..aaaeae8 100644 (file)
@@ -54,7 +54,6 @@ void down(struct semaphore *sem)
 {
        unsigned long flags;
 
-       ftrace_special(sem->count, 0, __LINE__);
        spin_lock_irqsave(&sem->lock, flags);
        if (likely(sem->count > 0))
                sem->count--;