]> git.proxmox.com Git - ceph.git/blob - ceph/src/spdk/dpdk/drivers/crypto/nitrox/nitrox_logs.c
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / spdk / dpdk / drivers / crypto / nitrox / nitrox_logs.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(C) 2019 Marvell International Ltd.
3 */
4
5 #include <rte_log.h>
6
7 int nitrox_logtype;
8
9 RTE_INIT(nitrox_init_log)
10 {
11 nitrox_logtype = rte_log_register("pmd.crypto.nitrox");
12 if (nitrox_logtype >= 0)
13 rte_log_set_level(nitrox_logtype, RTE_LOG_NOTICE);
14 }