diff options
| author | Anup Patel <[email protected]> | 2023-02-13 10:39:06 +0530 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2023-02-27 11:26:37 +0530 |
| commit | 31b82e0d5046dda92d5d393d66455545763b99c9 (patch) | |
| tree | 7d472bf775a463472ba955c173a8fe273ee64a68 /lib | |
| parent | 81adc62f45c0baf13112358164a327197e70a7af (diff) | |
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 <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/sbi/sbi_ecall_vendor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbi/sbi_ecall_vendor.c b/lib/sbi/sbi_ecall_vendor.c index 9ea5156b..8b8dab00 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); } |
