Skip to content

Commit 8c9646d

Browse files
committed
fmt code
1 parent b7ac836 commit 8c9646d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/vcpu.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -207,12 +207,12 @@ impl<H: AxVCpuHal> Aarch64VCpu<H> {
207207
);
208208
}
209209
self.guest_system_regs.vtcr_el2 = (VTCR_EL2::PS::PA_48B_256TB
210-
+ VTCR_EL2::TG0::Granule4KB
211-
+ VTCR_EL2::SH0::Inner
212-
+ VTCR_EL2::ORGN0::NormalWBRAWA
213-
+ VTCR_EL2::IRGN0::NormalWBRAWA
214-
+ VTCR_EL2::SL0.val(0b10) // 0b10 means start at level 0
215-
+ VTCR_EL2::T0SZ.val(64 - 48))
210+
+ VTCR_EL2::TG0::Granule4KB
211+
+ VTCR_EL2::SH0::Inner
212+
+ VTCR_EL2::ORGN0::NormalWBRAWA
213+
+ VTCR_EL2::IRGN0::NormalWBRAWA
214+
+ VTCR_EL2::SL0.val(0b10) // 0b10 means start at level 0
215+
+ VTCR_EL2::T0SZ.val(64 - 48))
216216
.into();
217217
}
218218

0 commit comments

Comments
 (0)