mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-22 22:53:04 +00:00
m1n1.hw.dart: Fix typo
Signed-off-by: Hector Martin <marcan@marcan.st>
This commit is contained in:
parent
c8a8946e82
commit
8778819831
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ class DART(Reloadable):
|
|||
continue
|
||||
|
||||
cached, l1 = self.get_pt(ttbr.ADDR << 12)
|
||||
l1pte = self.pteclsf(l1[(page >> self.L1_OFF) & self.IDX_MASK])
|
||||
l1pte = self.ptecls(l1[(page >> self.L1_OFF) & self.IDX_MASK])
|
||||
if not l1pte.VALID and cached:
|
||||
cached, l1 = self.get_pt(ttbr.ADDR << 12, uncached=True)
|
||||
l1pte = self.ptecls(l1[(page >> self.L1_OFF) & self.IDX_MASK])
|
||||
|
|
Loading…
Reference in a new issue