Wrapper to provide QG index from ring data. */
| 821 | |
| 822 | /* Wrapper to provide QG index from ring data. */ |
| 823 | static inline uint16_t |
| 824 | qg_from_ring(const union acc_info_ring_data ring_data, uint16_t device_variant) |
| 825 | { |
| 826 | if (device_variant == VRB2_VARIANT) |
| 827 | return ring_data.qg_id_vrb2; |
| 828 | else |
| 829 | return ring_data.qg_id; |
| 830 | } |
| 831 | |
| 832 | /* Wrapper to provide AQ index from ring data. */ |
| 833 | static inline uint16_t |
no outgoing calls
no test coverage detected