mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-15 17:14:21 +00:00
Merge "refactor(mediatek): refactor the data type of the return value" into integration
This commit is contained in:
commit
35c54de149
1 changed files with 6 additions and 6 deletions
|
@ -81,12 +81,12 @@ struct smccc_res {
|
|||
uint64_t a3;
|
||||
};
|
||||
|
||||
typedef uintptr_t (*smc_handler_t)(u_register_t,
|
||||
u_register_t,
|
||||
u_register_t,
|
||||
u_register_t,
|
||||
void *,
|
||||
struct smccc_res *);
|
||||
typedef u_register_t (*smc_handler_t)(u_register_t,
|
||||
u_register_t,
|
||||
u_register_t,
|
||||
u_register_t,
|
||||
void *,
|
||||
struct smccc_res *);
|
||||
|
||||
struct smc_descriptor {
|
||||
smc_handler_t smc_handler;
|
||||
|
|
Loading…
Add table
Reference in a new issue