浏览代码

fix(prototyper): typo

Signed-off-by: Woshiluo Luo <woshiluo.luo@outlook.com>
Woshiluo Luo 5 月之前
父节点
当前提交
2bd87107e7
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      prototyper/src/main.rs

+ 2 - 2
prototyper/src/main.rs

@@ -50,13 +50,13 @@ extern "C" fn rust_main(_hart_id: usize, opaque: usize, nonstandard_a2: usize) {
 
         // parse the device tree
 
-        // 2. Init FDT
+        // 1. Init FDT
         let dtb = dt::parse_device_tree(opaque).unwrap_or_else(fail::device_tree_format);
         let dtb = dtb.share();
         let tree =
             serde_device_tree::from_raw_mut(&dtb).unwrap_or_else(fail::device_tree_deserialize);
 
-        // 1. Init device
+        // 2. Init device
         // TODO: The device base address should be find in a better way
         let reset_device = tree.soc.test.unwrap().iter().next().unwrap();
         let console_base = tree.soc.serial.unwrap().iter().next().unwrap();