blob: 017c937cb204011a0b5e692a6183c73391e2f279 [file] [log] [blame]
Archanae829cd62021-12-24 12:50:36 +05301{% for driver in drivers if driver.type == "transparent" -%}
2{% for capability in driver.capabilities if entry_point in capability.entry_points -%}
3#if ({% if capability.depend_on is defined -%}{{ capability.depend_on }} {% else -%} {{ 1 }} {% endif %})
4{%- filter indent(width = nest_indent) %}
5status = {{driver.prefix}}_{{driver.type}}_{{entry_point}}({{entry_point_attributes(driver) | indent(20)}});
6
7if( status != PSA_ERROR_NOT_SUPPORTED )
8 return( status );
9{% endfilter -%}
10#endif
11{% endfor %}
12{% endfor %}