1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright (C) 2022 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 bool ftl_conf_is_valid(const struct spdk_ftl_conf *conf); 12 13 int ftl_conf_init_dev(struct spdk_ftl_dev *dev, const struct spdk_ftl_conf *conf); 14 15 #endif /* FTL_DEFS_H */ 16