diff options
author | Atish Patra <atish.patra@wdc.com> | 2020-05-09 16:47:23 -0700 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2020-05-10 09:59:16 +0530 |
commit | 63a513edeccee1758bbfe5111ccc4fbec8f18a12 (patch) | |
tree | 0b134fad4465b6cb69a9c69315f084104e1bb839 /lib/sbi/objects.mk | |
parent | 7be75f519f7705367030258c4410d9ff9ea24a6f (diff) |
lib: Rename unprivileged trap handler
Unprivileged trap handler can be reused for any cases where the executing
code expects a trap.
Rename it to "expected" trap handler as it will be used in other cases in
future.
Signed-off-by: Atish Patra <atish.patra@wdc.com>
Tested-by: Jonathan Balkind <jbalkind@cs.princeton.edu>
Reviewed-by: Anup Patel <anup.patel@wdc.com>
Diffstat (limited to 'lib/sbi/objects.mk')
-rw-r--r-- | lib/sbi/objects.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbi/objects.mk b/lib/sbi/objects.mk index 7e700fa..190ee12 100644 --- a/lib/sbi/objects.mk +++ b/lib/sbi/objects.mk @@ -37,4 +37,4 @@ libsbi-objs-y += sbi_timer.o libsbi-objs-y += sbi_tlb.o libsbi-objs-y += sbi_trap.o libsbi-objs-y += sbi_unpriv.o -libsbi-objs-y += sbi_unpriv_trap.o +libsbi-objs-y += sbi_expected_trap.o |