1 /* 2 * Copyright (C) 2018 Intel Corporation. 3 * SPDX-License-Identifier: BSD-3-Clause 4 */ 5 6 #ifndef NPK_LOG_H 7 #define NPK_LOG_H 8 9 struct hv_npk_log_param; 10 11 void npk_log_setup(struct hv_npk_log_param *param); 12 void npk_log_write(const char *buf, size_t len); 13 14 #endif /* NPK_LOG_H */ 15