From 89aacd85f3d9d458f1b65343dc63dbc065316770 Mon Sep 17 00:00:00 2001 From: Ioannis Valasakis Date: Sat, 18 Aug 2018 22:29:00 +0000 Subject: [PATCH] Typo: partition --- 0A_power/src/power.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/0A_power/src/power.rs b/0A_power/src/power.rs index 68f0bb97..41240021 100644 --- a/0A_power/src/power.rs +++ b/0A_power/src/power.rs @@ -45,8 +45,8 @@ const PM_RSTC_WRCFG_CLR: u32 = 0xffff_ffcf; const PM_RSTC_WRCFG_FULL_RESET: u32 = 0x0000_0020; // The Raspberry Pi firmware uses the RSTS register to know which -// partiton to boot from. The partiton value is spread into bits 0, 2, -// 4, 6, 8, 10. Partiton 63 is a special partition used by the +// partition to boot from. The partition value is spread into bits 0, 2, +// 4, 6, 8, 10. Partition 63 is a special partition used by the // firmware to indicate halt. const PM_RSTS_RASPBERRYPI_HALT: u32 = 0x555;