1/* SPDX-License-Identifier: GPL-2.0-or-later */ 2/* 3 * Copyright (c) 2023 Huawei Device Co., Ltd. 4 */ 5 6#ifndef _CED_LOG_H 7#define _CED_LOG_H 8 9#define CED_CHECK_FAILED (-1024) 10 11#define CED_TAG "ced_kernel" 12#define CED_INFO_TAG "I" 13#define CED_ERROR_TAG "E" 14#define CED_DEBUG_TAG "D" 15 16#define ced_log_info(fmt, args...) pr_info("[%s/%s]%s: " fmt "\n", \ 17 CED_INFO_TAG, CED_TAG, __func__, ##args) 18 19#define ced_log_error(fmt, args...) pr_err("[%s/%s]%s: " fmt "\n", \ 20 CED_ERROR_TAG, CED_TAG, __func__, ##args) 21 22#endif /* _CED_LOG_H */