Parcourir la source

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 il y a 8 ans
Parent
commit
047571e999
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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);