summaryrefslogtreecommitdiffstats
path: root/src/nvme/no-json.c
blob: 171144ef9a2c298279e014f4944c767f5be1aa36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: LGPL-2.1-or-later
/*
 * This file is part of libnvme.
 * Copyright (c) 2023 SUSE Software Solutions
 *
 * Authors: Daniel Wagner <dwagner@suse.de>
 */

#include "tree.h"

#include <errno.h>

int json_read_config(nvme_root_t r, const char *config_file)
{
	return -ENOTSUP;
}

int json_update_config(nvme_root_t r, const char *config_file)
{
	return -ENOTSUP;
}

int json_dump_tree(nvme_root_t r)
{
	return -ENOTSUP;
}