diff options
| author | Atish Patra <[email protected]> | 2021-07-10 09:18:04 -0700 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2021-07-11 10:12:06 +0530 |
| commit | d3a96cc46989783c2fbb47e11349dbd5d652938d (patch) | |
| tree | da7210d3ebcfe23c18cee8dad3c7786b7c53b1f2 | |
| parent | fde28fadc2603c7c7a4afa7c2e7b96cc7b11d2e2 (diff) | |
lib: sbi: Remove stray '\' character
Reviewed-by: Xiang W <[email protected]>
Reviewed-by: Anup Patel <[email protected]>
Signed-off-by: Atish Patra <[email protected]>
| -rw-r--r-- | lib/sbi/sbi_hart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbi/sbi_hart.c b/lib/sbi/sbi_hart.c index 0bd1db1a..9c01cf75 100644 --- a/lib/sbi/sbi_hart.c +++ b/lib/sbi/sbi_hart.c @@ -320,7 +320,7 @@ static unsigned long hart_pmp_get_allowed_addr(void) unsigned long val = 0; struct sbi_trap_info trap = {0}; - csr_write_allowed(CSR_PMPADDR0, (ulong)&trap, PMP_ADDR_MASK); \ + csr_write_allowed(CSR_PMPADDR0, (ulong)&trap, PMP_ADDR_MASK); if (!trap.cause) { val = csr_read_allowed(CSR_PMPADDR0, (ulong)&trap); if (trap.cause) |
