Wrapper to provide AQ index from ring data. */
| 831 | |
| 832 | /* Wrapper to provide AQ index from ring data. */ |
| 833 | static inline uint16_t |
| 834 | aq_from_ring(const union acc_info_ring_data ring_data, uint16_t device_variant) |
| 835 | { |
| 836 | if (device_variant == VRB2_VARIANT) |
| 837 | return ring_data.aq_id_vrb2; |
| 838 | else |
| 839 | return ring_data.aq_id; |
| 840 | } |
| 841 | |
| 842 | /* Wrapper to provide int index from ring data. */ |
| 843 | static inline uint16_t |
no outgoing calls
no test coverage detected