05efa17549
Function names can be provided against entry points. This helps to ensure easy migration for misnamed functions. Signed-off-by: Archana <archana.madhavan@silabs.com> Signed-off-by: Asfandyar Orakzai <asfandyar.orakzai@silabs.com>
16 lines
715 B
Django/Jinja
16 lines
715 B
Django/Jinja
{% for driver in drivers if driver.type == "transparent" -%}
|
|
{% for capability in driver.capabilities if entry_point in capability.entry_points -%}
|
|
#if ({% if capability.depend_on is defined -%}{{ capability.depend_on }} {% else -%} {{ 1 }} {% endif %})
|
|
{%- filter indent(width = nest_indent) %}
|
|
{% if capability.name is defined and entry_point in capability.name.keys() -%}
|
|
status = {{ capability.name[entry_point]}}({{entry_point_attributes(driver) | indent(20)}});
|
|
{% else -%}
|
|
status = {{driver.prefix}}_{{driver.type}}_{{entry_point}}({{entry_point_attributes(driver) | indent(20)}});
|
|
{% endif -%}
|
|
|
|
if( status != PSA_ERROR_NOT_SUPPORTED )
|
|
return( status );
|
|
{% endfilter -%}
|
|
#endif
|
|
{% endfor %}
|
|
{% endfor %}
|