mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 04:48:14 +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;
|
uint64_t a3;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef uintptr_t (*smc_handler_t)(u_register_t,
|
typedef u_register_t (*smc_handler_t)(u_register_t,
|
||||||
u_register_t,
|
u_register_t,
|
||||||
u_register_t,
|
u_register_t,
|
||||||
u_register_t,
|
u_register_t,
|
||||||
void *,
|
void *,
|
||||||
struct smccc_res *);
|
struct smccc_res *);
|
||||||
|
|
||||||
struct smc_descriptor {
|
struct smc_descriptor {
|
||||||
smc_handler_t smc_handler;
|
smc_handler_t smc_handler;
|
||||||
|
|
Loading…
Add table
Reference in a new issue