diff options
author | Manohar Vanga <mvanga@mpi-sws.org> | 2012-10-03 16:21:05 -0400 |
---|---|---|
committer | Bjoern Brandenburg <bbb@mpi-sws.org> | 2012-11-27 13:50:16 -0500 |
commit | e99428ce6786f76b64cfea5da814a7a5cd939de3 (patch) | |
tree | 9e34163a189780fdfad0b1d918ab33f11b5ecf59 | |
parent | 635073dd057be83073a36cf0287a08a716d37784 (diff) |
litmus: fix warning about unused label in sched_pfp.c
This patch fixes a warning about an unused label in sched_pfp.c
when CONFIG_LITMUS_LOCKING is not set.
Signed-off-by: Manohar Vanga <mvanga@mpi-sws.org>
-rw-r--r-- | litmus/sched_pfp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/litmus/sched_pfp.c b/litmus/sched_pfp.c index 829226a56c04..c1ae4bbd2529 100644 --- a/litmus/sched_pfp.c +++ b/litmus/sched_pfp.c | |||
@@ -369,7 +369,9 @@ static void pfp_task_wake_up(struct task_struct *task) | |||
369 | pfp_preempt_check(pfp); | 369 | pfp_preempt_check(pfp); |
370 | } | 370 | } |
371 | 371 | ||
372 | #ifdef CONFIG_LITMUS_LOCKING | ||
372 | out_unlock: | 373 | out_unlock: |
374 | #endif | ||
373 | raw_spin_unlock_irqrestore(&pfp->slock, flags); | 375 | raw_spin_unlock_irqrestore(&pfp->slock, flags); |
374 | TRACE_TASK(task, "wake up done\n"); | 376 | TRACE_TASK(task, "wake up done\n"); |
375 | } | 377 | } |