Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'optee-typo-fix-for-v6.17' of https://git.kernel.org/pub/scm/linux/kernel/git/jenswi/linux-tee into arm/fixes

OP-TEE driver fix for v6.17

Fixing a typo in a function name.

* tag 'optee-typo-fix-for-v6.17' of https://git.kernel.org/pub/scm/linux/kernel/git/jenswi/linux-tee:
tee: optee: ffa: fix a typo of "optee_ffa_api_is_compatible"

Link: https://lore.kernel.org/r/20250819122917.GB3486750@rayden
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

+2 -2
+2 -2
drivers/tee/optee/ffa_abi.c
··· 657 657 * with a matching configuration. 658 658 */ 659 659 660 - static bool optee_ffa_api_is_compatbile(struct ffa_device *ffa_dev, 660 + static bool optee_ffa_api_is_compatible(struct ffa_device *ffa_dev, 661 661 const struct ffa_ops *ops) 662 662 { 663 663 const struct ffa_msg_ops *msg_ops = ops->msg_ops; ··· 908 908 ffa_ops = ffa_dev->ops; 909 909 notif_ops = ffa_ops->notifier_ops; 910 910 911 - if (!optee_ffa_api_is_compatbile(ffa_dev, ffa_ops)) 911 + if (!optee_ffa_api_is_compatible(ffa_dev, ffa_ops)) 912 912 return -EINVAL; 913 913 914 914 if (!optee_ffa_exchange_caps(ffa_dev, ffa_ops, &sec_caps,