diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2013-04-18 12:51:19 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2013-04-18 12:51:19 +0200 |
commit | d2054b2c11682495fca41e9d4092e654df63b517 (patch) | |
tree | 0320e37293ca3633291eaed49450a98af6d60181 /kernel/posix-timers.c | |
parent | c038c1c44179c80da6201f91ef354e48d5689617 (diff) | |
download | talos-obmc-linux-d2054b2c11682495fca41e9d4092e654df63b517.tar.gz talos-obmc-linux-d2054b2c11682495fca41e9d4092e654df63b517.zip |
posix-timers: Remove unused variable
Remove the unused variable *node introduced by commit 5ed67f05 (posix
timers: Allocate timer id per process)
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Pavel Emelyanov <xemul@parallels.com>
Diffstat (limited to 'kernel/posix-timers.c')
-rw-r--r-- | kernel/posix-timers.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/posix-timers.c b/kernel/posix-timers.c index 34d75926b843..424c2d4265c9 100644 --- a/kernel/posix-timers.c +++ b/kernel/posix-timers.c @@ -154,7 +154,6 @@ static struct k_itimer *__posix_timers_find(struct hlist_head *head, struct signal_struct *sig, timer_t id) { - struct hlist_node *node; struct k_itimer *timer; hlist_for_each_entry_rcu(timer, head, t_hash) { |