summaryrefslogtreecommitdiff
path: root/include/sbi/sbi_error.h
blob: 574a84d098f5bce814f599e01d1a75bde11060da (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
27
28
29
30
31
32
33
34
35
/*
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * Copyright (c) 2019 Western Digital Corporation or its affiliates.
 *
 * Authors:
 *   Anup Patel <anup.patel@wdc.com>
 */

#ifndef __SBI_ERROR_H__
#define __SBI_ERROR_H__

/* clang-format off */

#define SBI_OK			0
#define SBI_EFAIL		-1
#define SBI_ENOTSUPP		-2
#define SBI_EINVAL		-3
#define SBI_DENIED		-4
#define SBI_INVALID_ADDR	-5
#define SBI_ENODEV		-6
#define SBI_ENOSYS		-7
#define SBI_ETIMEDOUT		-8
#define SBI_EIO			-9
#define SBI_EILL		-10
#define SBI_ENOSPC		-11
#define SBI_ENOMEM		-12
#define SBI_ETRAP		-13
#define SBI_EUNKNOWN		-14
#define SBI_ENOENT		-15
#define SBI_EALREADY_STARTED	-16

/* clang-format on */

#endif