1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright (c) Intel Corporation. 3 * All rights reserved. 4 */ 5 6 #ifndef FTL_CONF_H 7 #define FTL_CONF_H 8 9 #include "spdk/ftl.h" 10 11 int ftl_conf_cpy(struct spdk_ftl_conf *dst, const struct spdk_ftl_conf *src); 12 13 void ftl_conf_deinit(struct spdk_ftl_conf *conf); 14 15 #endif /* FTL_DEFS_H */ 16