diff options
author | Olof Johansson <olof@lixom.net> | 2019-04-10 17:41:46 -0700 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2019-04-24 09:49:46 +0530 |
commit | fbf986ac2a0b926ae97e6796b87e366610d7589e (patch) | |
tree | 1d65814b7832b1173c4094e4f91c7da9f491e87a /include/sbi/sbi_ipi.h | |
parent | 97fb8c0e3bcd4d7915ea35020e4d95999d389cd3 (diff) |
all: Annotate some tables to have clang-format leave them alone
One of the shortcomings of clang-format is that it doesn't allow
for aligned define tables, which is used for a number of constants.
Add annotation to disable the automatic formatting where needed.
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'include/sbi/sbi_ipi.h')
-rw-r--r-- | include/sbi/sbi_ipi.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sbi/sbi_ipi.h b/include/sbi/sbi_ipi.h index 609598e..f68e8fe 100644 --- a/include/sbi/sbi_ipi.h +++ b/include/sbi/sbi_ipi.h @@ -12,12 +12,16 @@ #include <sbi/sbi_types.h> +/* clang-format off */ + #define SBI_IPI_EVENT_SOFT 0x1 #define SBI_IPI_EVENT_FENCE_I 0x2 #define SBI_IPI_EVENT_SFENCE_VMA 0x4 #define SBI_IPI_EVENT_SFENCE_VMA_ASID 0x8 #define SBI_IPI_EVENT_HALT 0x10 +/* clang-format on */ + #define SBI_TLB_FIFO_NUM_ENTRIES 4 enum sbi_tlb_info_types { SBI_TLB_FLUSH_VMA, |