Commit 34e36d81 authored by Catalin Marinas's avatar Catalin Marinas

arm64: Shift the __tlbi_level() indentation left

This is for consistency with the other __tlbi macros in this file. No
functional change.
Signed-off-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
parent a7ac1cfa
...@@ -77,8 +77,7 @@ ...@@ -77,8 +77,7 @@
#define TLBI_TTL_TG_16K 2 #define TLBI_TTL_TG_16K 2
#define TLBI_TTL_TG_64K 3 #define TLBI_TTL_TG_64K 3
#define __tlbi_level(op, addr, level) \ #define __tlbi_level(op, addr, level) do { \
do { \
u64 arg = addr; \ u64 arg = addr; \
\ \
if (cpus_have_const_cap(ARM64_HAS_ARMv8_4_TTL) && \ if (cpus_have_const_cap(ARM64_HAS_ARMv8_4_TTL) && \
...@@ -102,7 +101,7 @@ ...@@ -102,7 +101,7 @@
} \ } \
\ \
__tlbi(op, arg); \ __tlbi(op, arg); \
} while(0) } while(0)
#define __tlbi_user_level(op, arg, level) do { \ #define __tlbi_user_level(op, arg, level) do { \
if (arm64_kernel_unmapped_at_el0()) \ if (arm64_kernel_unmapped_at_el0()) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment