|
@@ -898,8 +898,10 @@ static int bcm2835_dma_probe(struct platform_device *pdev)
|
|
|
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
|
|
pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
|
|
|
|
|
|
|
|
rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
|
|
rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
|
|
|
- if (rc)
|
|
|
|
|
|
|
+ if (rc) {
|
|
|
|
|
+ dev_err(&pdev->dev, "Unable to set DMA mask\n");
|
|
|
return rc;
|
|
return rc;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
od = devm_kzalloc(&pdev->dev, sizeof(*od), GFP_KERNEL);
|
|
od = devm_kzalloc(&pdev->dev, sizeof(*od), GFP_KERNEL);
|
|
|
if (!od)
|
|
if (!od)
|