Commit 09d5d4aa authored by Andrei Emeltchenko's avatar Andrei Emeltchenko Committed by Gustavo Padovan

Bluetooth: trivial: Shorten variable scope

Make code more clear by moving sk and bt vars to the place where
they are actually used.
Signed-off-by: default avatarAndrei Emeltchenko <andrei.emeltchenko@intel.com>
Acked-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
parent e6dd548b
...@@ -567,8 +567,6 @@ static void bt_seq_stop(struct seq_file *seq, void *v) ...@@ -567,8 +567,6 @@ static void bt_seq_stop(struct seq_file *seq, void *v)
static int bt_seq_show(struct seq_file *seq, void *v) static int bt_seq_show(struct seq_file *seq, void *v)
{ {
struct sock *sk;
struct bt_sock *bt;
struct bt_seq_state *s = seq->private; struct bt_seq_state *s = seq->private;
struct bt_sock_list *l = s->l; struct bt_sock_list *l = s->l;
bdaddr_t src_baswapped, dst_baswapped; bdaddr_t src_baswapped, dst_baswapped;
...@@ -583,8 +581,8 @@ static int bt_seq_show(struct seq_file *seq, void *v) ...@@ -583,8 +581,8 @@ static int bt_seq_show(struct seq_file *seq, void *v)
seq_putc(seq, '\n'); seq_putc(seq, '\n');
} else { } else {
sk = sk_entry(v); struct sock *sk = sk_entry(v);
bt = bt_sk(sk); struct bt_sock *bt = bt_sk(sk);
baswap(&src_baswapped, &bt->src); baswap(&src_baswapped, &bt->src);
baswap(&dst_baswapped, &bt->dst); baswap(&dst_baswapped, &bt->dst);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment