소스 검색

qcacmn: set the snoc dma mask to 37 bits

The driver and hardware should support 37 bit dma addresses.

Change-Id: Ic1dc48968ce925e4bc4f89d95feaf400cc32d2da
CRs-Fixed: 1024300
Houston Hoffman 8 년 전
부모
커밋
047571e999
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hif/src/snoc/if_snoc.c

+ 1 - 1
hif/src/snoc/if_snoc.c

@@ -198,7 +198,7 @@ QDF_STATUS hif_snoc_enable_bus(struct hif_softc *ol_sc,
 	int ret;
 	int hif_type;
 	int target_type;
-	ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
+	ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(37));
 	if (ret) {
 		HIF_ERROR("%s: failed to set dma mask error = %d",
 				__func__, ret);