Skip to content

Commit

Permalink
Bluetooth: trivial: Shorten variable scope
Browse files Browse the repository at this point in the history
Make code more clear by moving sk and bt vars to the place where
they are actually used.

Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
  • Loading branch information
Andrei Emeltchenko authored and Gustavo Padovan committed Aug 15, 2012
1 parent e6dd548 commit 09d5d4a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions net/bluetooth/af_bluetooth.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
struct sock *sk;
struct bt_sock *bt;
struct bt_seq_state *s = seq->private;
struct bt_sock_list *l = s->l;
bdaddr_t src_baswapped, dst_baswapped;
Expand All @@ -583,8 +581,8 @@ static int bt_seq_show(struct seq_file *seq, void *v)

seq_putc(seq, '\n');
} else {
sk = sk_entry(v);
bt = bt_sk(sk);
struct sock *sk = sk_entry(v);
struct bt_sock *bt = bt_sk(sk);
baswap(&src_baswapped, &bt->src);
baswap(&dst_baswapped, &bt->dst);

Expand Down

0 comments on commit 09d5d4a

Please sign in to comment.