diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2020-03-08 20:52:41 -0700 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2020-03-10 10:27:28 +0530 |
commit | 650c0e525ce60e80b6756aa8cc4eeae5b20ccbd8 (patch) | |
tree | 579e92ff39fa780818fe483337850d28df5ddb15 /include/sbi/sbi_error.h | |
parent | 6e87507db6ce7be39ccccb33d6283814f0283c09 (diff) |
lib: sbi: Fix coding style issues
This fixes various coding style issues found in the SBI codes.
No functional changes.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Anup Patel <anup.patel@wdc.com>
Diffstat (limited to 'include/sbi/sbi_error.h')
-rw-r--r-- | include/sbi/sbi_error.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/include/sbi/sbi_error.h b/include/sbi/sbi_error.h index 91ba2ee..574a84d 100644 --- a/include/sbi/sbi_error.h +++ b/include/sbi/sbi_error.h @@ -12,22 +12,22 @@ /* 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_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 */ |