crypto/qat: rename log macro for non-dp logs
[dpdk.git] / drivers / crypto / qat / qat_logs.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2015-2018 Intel Corporation
3  */
4
5 #ifndef _QAT_LOGS_H_
6 #define _QAT_LOGS_H_
7
8 extern int qat_gen_logtype;
9
10 #define QAT_LOG(level, fmt, args...)                    \
11         rte_log(RTE_LOG_ ## level, qat_gen_logtype,             \
12                         "%s(): " fmt "\n", __func__, ## args)
13
14 #endif /* _QAT_LOGS_H_ */