瀏覽代碼

cargo clippy --fix

Román Cárdenas 1 年之前
父節點
當前提交
89be0f4d1f
共有 1 個文件被更改,包括 7 次插入9 次删除
  1. 7 9
      riscv-rt/src/lib.rs

+ 7 - 9
riscv-rt/src/lib.rs

@@ -472,17 +472,15 @@ pub extern "C" fn start_trap_rust(trap_frame: *const TrapFrame) {
 
 
         if cause.is_exception() {
         if cause.is_exception() {
             ExceptionHandler(&*trap_frame)
             ExceptionHandler(&*trap_frame)
-        } else {
-            if cause.code() < __INTERRUPTS.len() {
-                let h = &__INTERRUPTS[cause.code()];
-                if h.reserved == 0 {
-                    DefaultHandler();
-                } else {
-                    (h.handler)();
-                }
-            } else {
+        } else if cause.code() < __INTERRUPTS.len() {
+            let h = &__INTERRUPTS[cause.code()];
+            if h.reserved == 0 {
                 DefaultHandler();
                 DefaultHandler();
+            } else {
+                (h.handler)();
             }
             }
+        } else {
+            DefaultHandler();
         }
         }
     }
     }
 }
 }