-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sync OP-TEE driver with new naming of interrupts #39
Conversation
drivers/tee/optee/optee_smc.h
Outdated
@@ -383,19 +383,19 @@ struct optee_smc_disable_shm_cache_result { | |||
OPTEE_SMC_RPC_VAL(OPTEE_SMC_RPC_FUNC_FREE) | |||
|
|||
/* | |||
* Deliver an IRQ in normal world. | |||
* Deliver a foreign interrupt in normal world. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't "Deliver a foreign interrupt in normal world" sound better?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't "Deliver a foreign interrupt in normal world" sound better?
Hi @jenswi-linaro ,
Sorry, did you suggest to reword the comment "Deliver a foreign interrupt in normal world."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, paste error. It should have been "Deliver foreign interrupt to normal world".
Once we're in normal world it's not a foreign interrupt anymore.
I'm only suggesting to think about it, if you agree please change otherwise keep it as it is.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, you're right. :)
|
In the latest changes of optee_os, the interrupts' names are changed to "native" and "foreign" interrupts. Signed-off-by: David Wang <david.wang@arm.com> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
583d3a5
to
0d890ff
Compare
Fixed |
I have reverted this patch (force pushed). @davwan01 have you actually built the driver with your patch applied? |
Hi @jforissier, |
So you don't know how to build linux, yet you are submitting a patch here? 😕 |
49ece5d merged. |
Hi @jforissier , |
@jbech-linaro , OK, it seems "replace the Linux folder in Linaro release package and test again". :) |
In the latest changes of optee_os, the interrupts' names are changed to "native" and "foreign" interrupts.