diff options
author | Harald Freudenberger <freude@linux.ibm.com> | 2021-10-15 13:00:22 +0300 |
---|---|---|
committer | Vasily Gorbik <gor@linux.ibm.com> | 2021-10-26 16:21:27 +0300 |
commit | 3f74eb5f78198a88ebbad7b1d8168f7ea34b3f1a (patch) | |
tree | c0269f60e091803fae579ce62a92dfac76242edc /drivers/s390/crypto/ap_debug.h | |
parent | 3826350e6dd435e244eb6e47abad5a47c169ebc2 (diff) | |
download | linux-3f74eb5f78198a88ebbad7b1d8168f7ea34b3f1a.tar.xz |
s390/zcrypt: rework of debug feature messages
This patch reworks all the debug feature invocations to be
more uniform. All invocations now use the macro with the
level already part of the macro name. All messages now start
with %s filled with __func__ (well there are still some
exceptions), and some message text has been shortened or
reworked.
There is no functional code touched with this patch.
Signed-off-by: Harald Freudenberger <freude@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'drivers/s390/crypto/ap_debug.h')
-rw-r--r-- | drivers/s390/crypto/ap_debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/crypto/ap_debug.h b/drivers/s390/crypto/ap_debug.h index 34b0350d0b1a..c083ce88a9a6 100644 --- a/drivers/s390/crypto/ap_debug.h +++ b/drivers/s390/crypto/ap_debug.h @@ -16,7 +16,7 @@ #define RC2ERR(rc) ((rc) ? DBF_ERR : DBF_INFO) #define RC2WARN(rc) ((rc) ? DBF_WARN : DBF_INFO) -#define DBF_MAX_SPRINTF_ARGS 5 +#define DBF_MAX_SPRINTF_ARGS 6 #define AP_DBF(...) \ debug_sprintf_event(ap_dbf_info, ##__VA_ARGS__) |