initrd: cast `initrd_start' to `void *'
[deliverable/linux.git] / kernel / semaphore.c
index 1a064adab658cbacc72c2fe8a88ab7e6f3a2efeb..aaaeae8244e77aa7dffd26ff935e7e3260c58a97 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--;
This page took 0.023497 seconds and 5 git commands to generate.