From db4633e5ff1f7915d4958c3071832769047caa4a Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 22 Feb 2018 20:58:32 -0500 Subject: [PATCH] mmu: Correct TCR_ORGN_WBWA define Previously this was incorrectly set as the Write-Back-Read-Allocate No Write-Allocate Cacheable define --- exosphere/mmu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exosphere/mmu.h b/exosphere/mmu.h index 602f447ef..430e8e65f 100644 --- a/exosphere/mmu.h +++ b/exosphere/mmu.h @@ -101,7 +101,7 @@ #define TCR_IRGN_WBNWA (3 << 8) #define TCR_IRGN_MASK (3 << 8) #define TCR_ORGN_NC (0 << 10) -#define TCR_ORGN_WBNWA (1 << 10) +#define TCR_ORGN_WBWA (1 << 10) #define TCR_ORGN_WT (2 << 10) #define TCR_ORGN_WBNWA (3 << 10) #define TCR_ORGN_MASK (3 << 10)