qcacmn: Replace Linux Fix-Width data-type with C-99 stdints
Datapath supposed to be HLOS-agnostic, but there is some use of Linux fixed-width types u8, u16, and u32. These should be replaced with C99 fixed-width types uint8_t, uint16_t, and uint32_t so that they will correctly be HLOS-agnostic and work on non-Linux targets. CRs-Fixed: 2326406 Change-Id: I8f9099a0170e4f94a54cdd6cc6c2e321a29af717
This commit is contained in:

committad av
nshrivas

förälder
83fb60c843
incheckning
be43d55622
@@ -162,8 +162,8 @@ static int dp_tx_ipa_uc_attach(struct dp_soc *soc, struct dp_pdev *pdev)
|
||||
QDF_DMA_BIDIRECTIONAL);
|
||||
buffer_paddr = qdf_nbuf_get_frag_paddr(nbuf, 0);
|
||||
|
||||
paddr_lo = ((u64)buffer_paddr & 0x00000000ffffffff);
|
||||
paddr_hi = ((u64)buffer_paddr & 0x0000001f00000000) >> 32;
|
||||
paddr_lo = ((uint64_t)buffer_paddr & 0x00000000ffffffff);
|
||||
paddr_hi = ((uint64_t)buffer_paddr & 0x0000001f00000000) >> 32;
|
||||
HAL_RXDMA_PADDR_LO_SET(ring_entry, paddr_lo);
|
||||
HAL_RXDMA_PADDR_HI_SET(ring_entry, paddr_hi);
|
||||
HAL_RXDMA_MANAGER_SET(ring_entry, (IPA_TCL_DATA_RING_IDX +
|
||||
|
Referens i nytt ärende
Block a user