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
diff --git a/hif/src/snoc/if_snoc.c b/hif/src/snoc/if_snoc.c
index f4ed0e6..bb90457 100644
--- a/hif/src/snoc/if_snoc.c
+++ b/hif/src/snoc/if_snoc.c
@@ -198,7 +198,7 @@
 	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);