xref: /spdk/lib/nvme/nvme_cuse.h (revision a6dbe3721eb3b5990707fc3e378c95e505dd8ab5)
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