diff options
Diffstat (limited to 'kernel/net/bluetooth/lib.c')
-rw-r--r-- | kernel/net/bluetooth/lib.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/kernel/net/bluetooth/lib.c b/kernel/net/bluetooth/lib.c index b36bc0415..aa4cf64e3 100644 --- a/kernel/net/bluetooth/lib.c +++ b/kernel/net/bluetooth/lib.c @@ -151,6 +151,22 @@ void bt_info(const char *format, ...) } EXPORT_SYMBOL(bt_info); +void bt_warn(const char *format, ...) +{ + struct va_format vaf; + va_list args; + + va_start(args, format); + + vaf.fmt = format; + vaf.va = &args; + + pr_warn("%pV", &vaf); + + va_end(args); +} +EXPORT_SYMBOL(bt_warn); + void bt_err(const char *format, ...) { struct va_format vaf; @@ -166,3 +182,19 @@ void bt_err(const char *format, ...) va_end(args); } EXPORT_SYMBOL(bt_err); + +void bt_err_ratelimited(const char *format, ...) +{ + struct va_format vaf; + va_list args; + + va_start(args, format); + + vaf.fmt = format; + vaf.va = &args; + + pr_err_ratelimited("%pV", &vaf); + + va_end(args); +} +EXPORT_SYMBOL(bt_err_ratelimited); |