ubsec_ssb: fix build of ubsec_ssb with new ssb patches

SVN-Revision: 22357
v19.07.3_mercusys_ac12_duma
Hauke Mehrtens 14 years ago
parent 8344c770fc
commit 24d0a9a069

@ -503,7 +503,12 @@ __devinit ubsec_ssb_probe(struct ssb_device *sdev,
goto err_out_powerdown;
}
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,34))
err = dma_set_mask(sdev->dma_dev, DMA_BIT_MASK(32)) ||
dma_set_coherent_mask(sdev->dma_dev, DMA_BIT_MASK(32));
#else
err = ssb_dma_set_mask(sdev, DMA_32BIT_MASK);
#endif
if (err) {
dev_err(sdev->dev,
"Required 32BIT DMA mask unsupported by the system.\n");

Loading…
Cancel
Save