msm: ipa3: Fix to changes the ring variable type

With u16 variable not fitting the higher ring size. So
adding changes to chnage ring type to u32.

Change-Id: Ib16e2426071c642f7e25beb022661dfa914cd0c4
Signed-off-by: Ashok Vuyyuru <avuyyuru@codeaurora.org>
This commit is contained in:
Ashok Vuyyuru
2021-05-27 13:35:09 +05:30
committed by Gerrit - the friendly Code Review server
parent 7e75a41fe6
commit 902eaf0290

View File

@@ -487,7 +487,7 @@ struct gsi_chan_props {
uint8_t ch_id; uint8_t ch_id;
unsigned long evt_ring_hdl; unsigned long evt_ring_hdl;
enum gsi_chan_ring_elem_size re_size; enum gsi_chan_ring_elem_size re_size;
uint16_t ring_len; uint32_t ring_len;
uint16_t max_re_expected; uint16_t max_re_expected;
uint64_t ring_base_addr; uint64_t ring_base_addr;
uint8_t db_in_bytes; uint8_t db_in_bytes;