Searched refs:SBI_CALL (Results 1 – 1 of 1) sorted by relevance
/Linux-v5.4/arch/riscv/include/asm/ |
D | sbi.h | 21 #define SBI_CALL(which, arg0, arg1, arg2, arg3) ({ \ macro 35 #define SBI_CALL_0(which) SBI_CALL(which, 0, 0, 0, 0) 36 #define SBI_CALL_1(which, arg0) SBI_CALL(which, arg0, 0, 0, 0) 37 #define SBI_CALL_2(which, arg0, arg1) SBI_CALL(which, arg0, arg1, 0, 0) 39 SBI_CALL(which, arg0, arg1, arg2, 0) 41 SBI_CALL(which, arg0, arg1, arg2, arg3)
|