Fix incorrect conflict resolution

A return statement was missing in the wrapper generation script.

Signed-off-by: David Horstmann <david.horstmann@arm.com>
This commit is contained in:
David Horstmann 2024-02-28 15:16:44 +00:00
parent e097bbdcf3
commit 7581363122

View File

@ -163,7 +163,7 @@ class PSAWrapperGenerator(c_wrapper_generator.Base):
'psa_hash_verify',
'psa_hash_compute',
'psa_hash_compare'):
return True
if function_name == 'psa_generate_random':
return True
return False