git: 258672fe62af - stable/14 - arm64: Fix indentation to be consistent

From: Andrew Turner <andrew_at_FreeBSD.org>
Date: Mon, 15 Jul 2024 12:38:31 UTC
The branch stable/14 has been updated by andrew:

URL: https://cgit.FreeBSD.org/src/commit/?id=258672fe62af8e59cb1e8fdb07f539561cc1a262

commit 258672fe62af8e59cb1e8fdb07f539561cc1a262
Author:     Andrew Turner <andrew@FreeBSD.org>
AuthorDate: 2024-06-10 14:58:22 +0000
Commit:     Andrew Turner <andrew@FreeBSD.org>
CommitDate: 2024-07-15 12:28:37 +0000

    arm64: Fix indentation to be consistent
    
    Adjust the mair_el1 macro indentation to be consistent with the
    surrounding macros.
    
    Reviewed by:    emaste
    Sponsored by:   Arm Ltd
    Differential Revision:  https://reviews.freebsd.org/D45524
    
    (cherry picked from commit 86bafddd61aba115bc46bcf1d7e0afb125850b5f)
---
 sys/arm64/include/armreg.h | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/sys/arm64/include/armreg.h b/sys/arm64/include/armreg.h
index fee36bc9dd4e..b96d2223eb0b 100644
--- a/sys/arm64/include/armreg.h
+++ b/sys/arm64/include/armreg.h
@@ -1496,13 +1496,13 @@
 #define	 ID_ISAR5_VCMA_IMPL		(UL(0x1) << ID_ISAR5_VCMA_SHIFT)
 
 /* MAIR_EL1 - Memory Attribute Indirection Register */
-#define	MAIR_ATTR_MASK(idx)	(UL(0xff) << ((n)* 8))
-#define	MAIR_ATTR(attr, idx) ((attr) << ((idx) * 8))
-#define	 MAIR_DEVICE_nGnRnE	UL(0x00)
-#define	 MAIR_DEVICE_nGnRE	UL(0x04)
-#define	 MAIR_NORMAL_NC		UL(0x44)
-#define	 MAIR_NORMAL_WT		UL(0xbb)
-#define	 MAIR_NORMAL_WB		UL(0xff)
+#define	MAIR_ATTR_MASK(idx)		(UL(0xff) << ((n)* 8))
+#define	MAIR_ATTR(attr, idx)		((attr) << ((idx) * 8))
+#define	 MAIR_DEVICE_nGnRnE		UL(0x00)
+#define	 MAIR_DEVICE_nGnRE		UL(0x04)
+#define	 MAIR_NORMAL_NC			UL(0x44)
+#define	 MAIR_NORMAL_WT			UL(0xbb)
+#define	 MAIR_NORMAL_WB			UL(0xff)
 
 /* MDCCINT_EL1 */
 #define	MDCCINT_EL1			MRS_REG(MDCCINT_EL1)