lib: sbi: Remove unnecessary semicolon

We have redundant semicolon at quite a few places so let's remove it.

Signed-off-by: Xiang W <wxjstz@126.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
This commit is contained in:
Xiang W
2023-04-25 16:56:23 +08:00
committed by Anup Patel
parent 7919530308
commit 4e3353057a
15 changed files with 19 additions and 19 deletions

View File

@@ -212,7 +212,7 @@ static int sbi_trap_nonaia_irq(struct sbi_trap_regs *regs, ulong mcause)
return sbi_irqchip_process(regs);
default:
return SBI_ENOENT;
};
}
return 0;
}
@@ -320,7 +320,7 @@ struct sbi_trap_regs *sbi_trap_handler(struct sbi_trap_regs *regs)
rc = sbi_trap_redirect(regs, &trap);
break;
};
}
trap_error:
if (rc)