forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
kernel/drivers/s390/crypto/ap_debug.h
....@@ -20,6 +20,14 @@
2020
2121 #define AP_DBF(...) \
2222 debug_sprintf_event(ap_dbf_info, ##__VA_ARGS__)
23
+#define AP_DBF_ERR(...) \
24
+ debug_sprintf_event(ap_dbf_info, DBF_ERR, ##__VA_ARGS__)
25
+#define AP_DBF_WARN(...) \
26
+ debug_sprintf_event(ap_dbf_info, DBF_WARN, ##__VA_ARGS__)
27
+#define AP_DBF_INFO(...) \
28
+ debug_sprintf_event(ap_dbf_info, DBF_INFO, ##__VA_ARGS__)
29
+#define AP_DBF_DBG(...) \
30
+ debug_sprintf_event(ap_dbf_info, DBF_DEBUG, ##__VA_ARGS__)
2331
2432 extern debug_info_t *ap_dbf_info;
2533