
Change license to BSD-3-Clause Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com>
19 lines
324 B
C
19 lines
324 B
C
/*
|
|
* Copyright(c) 2012-2021 Intel Corporation
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#ifndef __OCF_PRIV_H__
|
|
#define __OCF_PRIV_H__
|
|
|
|
#include "ocf_env.h"
|
|
#include "ocf_def_priv.h"
|
|
|
|
#define OCF_CHECK_NULL(p) ENV_BUG_ON(!(p))
|
|
|
|
#define OCF_CMPL_RET(args...) ({ \
|
|
cmpl(args); \
|
|
return; \
|
|
})
|
|
|
|
#endif /* __OCF_PRIV_H__ */
|