diff options
author | Anup Patel <anup.patel@wdc.com> | 2018-12-11 19:24:06 +0530 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2018-12-11 19:24:06 +0530 |
commit | 9e8ff05cb61f157fb0bcb6b0071d7b6dc0763faa (patch) | |
tree | b9513a86b3b36e569cb46387846fee9c5544f566 /include/sbi/sbi_error.h |
Initial commit.
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Diffstat (limited to 'include/sbi/sbi_error.h')
-rw-r--r-- | include/sbi/sbi_error.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/sbi/sbi_error.h b/include/sbi/sbi_error.h new file mode 100644 index 0000000..955674e --- /dev/null +++ b/include/sbi/sbi_error.h @@ -0,0 +1,25 @@ +/* + * Copyright (c) 2018 Western Digital Corporation or its affiliates. + * + * Authors: + * Anup Patel <anup.patel@wdc.com> + * + * SPDX-License-Identifier: BSD-2-Clause + */ + +#ifndef __SBI_ERROR_H__ +#define __SBI_ERROR_H__ + +#define SBI_OK 0 +#define SBI_EUNKNOWN -1 +#define SBI_EFAIL -2 +#define SBI_EINVAL -3 +#define SBI_ENOENT -4 +#define SBI_ENOTSUPP -5 +#define SBI_ENODEV -6 +#define SBI_ENOSYS -7 +#define SBI_ETIMEDOUT -8 +#define SBI_EIO -9 +#define SBI_EILL -10 + +#endif |