1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright (C) 2019 Intel Corporation. 3 * All rights reserved. 4 */ 5 6 #ifndef __NVME_CUSE_H__ 7 #define __NVME_CUSE_H__ 8 9 #include "spdk/nvme.h" 10 11 int nvme_cuse_register(struct spdk_nvme_ctrlr *ctrlr, const char *dev_path); 12 void nvme_cuse_unregister(struct spdk_nvme_ctrlr *ctrlr); 13 14 #endif /* __NVME_CUSE_H__ */ 15