aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/af_bluetooth.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2013-04-04 19:14:33 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2013-04-09 14:13:36 -0400
commitb03166152f6da91cec8b66837b309dd3923ea536 (patch)
treea749acffe925a9e595e6ff04e2c41d6f70f745bb /net/bluetooth/af_bluetooth.c
parent14805359c790977199e0d74fe689c2c17e6a0954 (diff)
bluetooth: kill unused 'module' argument of bt_procfs_init()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'net/bluetooth/af_bluetooth.c')
-rw-r--r--net/bluetooth/af_bluetooth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/af_bluetooth.c b/net/bluetooth/af_bluetooth.c
index 8ab94c6f6f3f..68e6fefb3655 100644
--- a/net/bluetooth/af_bluetooth.c
+++ b/net/bluetooth/af_bluetooth.c
@@ -634,7 +634,7 @@ static const struct file_operations bt_fops = {
634 .release = seq_release_private 634 .release = seq_release_private
635}; 635};
636 636
637int bt_procfs_init(struct module* module, struct net *net, const char *name, 637int bt_procfs_init(struct net *net, const char *name,
638 struct bt_sock_list* sk_list, 638 struct bt_sock_list* sk_list,
639 int (* seq_show)(struct seq_file *, void *)) 639 int (* seq_show)(struct seq_file *, void *))
640{ 640{
@@ -656,7 +656,7 @@ void bt_procfs_cleanup(struct net *net, const char *name)
656 remove_proc_entry(name, net->proc_net); 656 remove_proc_entry(name, net->proc_net);
657} 657}
658#else 658#else
659int bt_procfs_init(struct module* module, struct net *net, const char *name, 659int bt_procfs_init(struct net *net, const char *name,
660 struct bt_sock_list* sk_list, 660 struct bt_sock_list* sk_list,
661 int (* seq_show)(struct seq_file *, void *)) 661 int (* seq_show)(struct seq_file *, void *))
662{ 662{