Add wrapper for cache_config_set_default

Signed-off-by: Jan Musial <jan.musial@intel.com>
This commit is contained in:
Jan Musial 2022-02-24 12:26:02 +01:00
parent 6f1080d6a8
commit bfee654770

View File

@ -0,0 +1,12 @@
/*
* Copyright(c) 2022 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "ocf/ocf_mngt.h"
void ocf_mngt_cache_config_set_default_wrapper(struct ocf_mngt_cache_config *cfg)
{
ocf_mngt_cache_config_set_default(cfg);
}