mmu: Correct TCR_ORGN_WBWA define

Previously this was incorrectly set as the Write-Back-Read-Allocate No Write-Allocate Cacheable define
This commit is contained in:
Lioncash 2018-02-22 20:58:32 -05:00
parent 5d97ac48f2
commit db4633e5ff
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7

View File

@ -101,7 +101,7 @@
#define TCR_IRGN_WBNWA (3 << 8) #define TCR_IRGN_WBNWA (3 << 8)
#define TCR_IRGN_MASK (3 << 8) #define TCR_IRGN_MASK (3 << 8)
#define TCR_ORGN_NC (0 << 10) #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_WT (2 << 10)
#define TCR_ORGN_WBNWA (3 << 10) #define TCR_ORGN_WBNWA (3 << 10)
#define TCR_ORGN_MASK (3 << 10) #define TCR_ORGN_MASK (3 << 10)