summaryrefslogtreecommitdiff
path: root/net/bluetooth/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/bluetooth/lib.c')
-rw-r--r--net/bluetooth/lib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/bluetooth/lib.c b/net/bluetooth/lib.c
index aa4cf64e32a6..e87b965230bf 100644
--- a/net/bluetooth/lib.c
+++ b/net/bluetooth/lib.c
@@ -145,7 +145,7 @@ void bt_info(const char *format, ...)
vaf.fmt = format;
vaf.va = &args;
- pr_info("%pV", &vaf);
+ pr_info("%pKV", &vaf);
va_end(args);
}
@@ -161,7 +161,7 @@ void bt_warn(const char *format, ...)
vaf.fmt = format;
vaf.va = &args;
- pr_warn("%pV", &vaf);
+ pr_warn("%pKV", &vaf);
va_end(args);
}
@@ -177,7 +177,7 @@ void bt_err(const char *format, ...)
vaf.fmt = format;
vaf.va = &args;
- pr_err("%pV", &vaf);
+ pr_err("%pKV", &vaf);
va_end(args);
}
@@ -193,7 +193,7 @@ void bt_err_ratelimited(const char *format, ...)
vaf.fmt = format;
vaf.va = &args;
- pr_err_ratelimited("%pV", &vaf);
+ pr_err_ratelimited("%pKV", &vaf);
va_end(args);
}