summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAnup Patel <apatel@ventanamicro.com>2023-02-13 08:09:06 +0300
committerAnup Patel <anup@brainfault.org>2023-02-27 08:56:37 +0300
commit31b82e0d5046dda92d5d393d66455545763b99c9 (patch)
tree7d472bf775a463472ba955c173a8fe273ee64a68 /lib
parent81adc62f45c0baf13112358164a327197e70a7af (diff)
downloadopensbi-31b82e0d5046dda92d5d393d66455545763b99c9.tar.xz
include: sbi: Remove extid parameter from vendor_ext_provider() callback
The extid parameter of vendor_ext_provider() is redundant so let us remove it. Signed-off-by: Anup Patel <apatel@ventanamicro.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/sbi/sbi_ecall_vendor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbi/sbi_ecall_vendor.c b/lib/sbi/sbi_ecall_vendor.c
index 9ea5156..8b8dab0 100644
--- a/lib/sbi/sbi_ecall_vendor.c
+++ b/lib/sbi/sbi_ecall_vendor.c
@@ -43,7 +43,7 @@ static int sbi_ecall_vendor_handler(unsigned long extid, unsigned long funcid,
return SBI_ERR_NOT_SUPPORTED;
return sbi_platform_vendor_ext_provider(sbi_platform_thishart_ptr(),
- extid, funcid, regs,
+ funcid, regs,
out_val, out_trap);
}