wanrouter: Remove kernel_lock annotations

The BKL is gone, these annotations are useless.

Signed-off-by: Richard Weinberger <richard@nod.at>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Richard Weinberger
2011-11-07 13:27:30 -05:00
committed by David S. Miller
parent 23ba07991d
commit 039c811cb0

View File

@@ -81,7 +81,6 @@ static struct proc_dir_entry *proc_router;
* Iterator * Iterator
*/ */
static void *r_start(struct seq_file *m, loff_t *pos) static void *r_start(struct seq_file *m, loff_t *pos)
__acquires(kernel_lock)
{ {
struct wan_device *wandev; struct wan_device *wandev;
loff_t l = *pos; loff_t l = *pos;
@@ -103,7 +102,6 @@ static void *r_next(struct seq_file *m, void *v, loff_t *pos)
} }
static void r_stop(struct seq_file *m, void *v) static void r_stop(struct seq_file *m, void *v)
__releases(kernel_lock)
{ {
mutex_unlock(&config_mutex); mutex_unlock(&config_mutex);
} }