Wrapper to provide VF index from ring data. */
| 811 | |
| 812 | /* Wrapper to provide VF index from ring data. */ |
| 813 | static inline uint16_t |
| 814 | vf_from_ring(const union acc_info_ring_data ring_data, uint16_t device_variant) |
| 815 | { |
| 816 | if (device_variant == VRB2_VARIANT) |
| 817 | return ring_data.vf_id_vrb2; |
| 818 | else |
| 819 | return ring_data.vf_id; |
| 820 | } |
| 821 | |
| 822 | /* Wrapper to provide QG index from ring data. */ |
| 823 | static inline uint16_t |
no outgoing calls
no test coverage detected