Browse Source

fix(prototyper): clippy

Signed-off-by: Woshiluo Luo <woshiluo.luo@outlook.com>
Woshiluo Luo 5 months ago
parent
commit
15a66c03c9
2 changed files with 3 additions and 3 deletions
  1. 2 2
      prototyper/src/main.rs
  2. 1 1
      prototyper/src/sbi/fifo.rs

+ 2 - 2
prototyper/src/main.rs

@@ -80,7 +80,7 @@ extern "C" fn rust_main(_hart_id: usize, opaque: usize, nonstandard_a2: usize) {
                     Some(value) => value,
                     None => return false,
                 };
-                isa.iter().find(|&x| x == "sstc").is_some()
+                isa.iter().any(|x| x == "sstc")
             })
             .all(|x| x);
         #[cfg(feature = "nemu")]
@@ -156,7 +156,7 @@ extern "C" fn rust_main(_hart_id: usize, opaque: usize, nonstandard_a2: usize) {
         trap_stack::prepare_for_trap();
 
         // waiting for sbi ready
-        while !SBI_READY.load(Ordering::Relaxed) {}
+        while !SBI_READY.load(Ordering::Relaxed) { core::hint::spin_loop() }
     }
 
     ipi::clear_all();

+ 1 - 1
prototyper/src/sbi/fifo.rs

@@ -57,7 +57,7 @@ impl<T: Copy + Clone> Fifo<T> {
         } as usize;
 
         self.avil -= 1;
-        let result = unsafe { self.data[head].assume_init_ref() }.clone();
+        let result = *unsafe { self.data[head].assume_init_ref() };
         unsafe { self.data[head].assume_init_drop() }
         Ok(result)
     }