Bluetooth: Use %pMR in sprintf/seq_printf instead of batostr
[deliverable/linux.git] / net / bluetooth / sco.c
index 347d3b954315388cd417688d30c7181869830288..450cdcd88e5c9a624372927639433f67fc2fde1d 100644 (file)
@@ -959,8 +959,8 @@ static int sco_debugfs_show(struct seq_file *f, void *p)
        read_lock(&sco_sk_list.lock);
 
        sk_for_each(sk, node, &sco_sk_list.head) {
-               seq_printf(f, "%s %s %d\n", batostr(&bt_sk(sk)->src),
-                          batostr(&bt_sk(sk)->dst), sk->sk_state);
+               seq_printf(f, "%pMR %pMR %d\n", &bt_sk(sk)->src,
+                          &bt_sk(sk)->dst, sk->sk_state);
        }
 
        read_unlock(&sco_sk_list.lock);
This page took 0.023386 seconds and 5 git commands to generate.