Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 01c29206 authored by Wei Yongjun's avatar Wei Yongjun Committed by Tejun Heo
Browse files

ata: sata_dwc_460ex: remove redundant dev_err call



There is a error message within devm_ioremap_resource
already, so remove the dev_err call to avoid redundant
error message.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent 37f92d77
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -259,11 +259,8 @@ static int sata_dwc_dma_init_old(struct platform_device *pdev,
	/* Get physical SATA DMA register base address */
	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
	hsdev->dma->regs = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(hsdev->dma->regs)) {
		dev_err(&pdev->dev,
			"ioremap failed for AHBDMA register address\n");
	if (IS_ERR(hsdev->dma->regs))
		return PTR_ERR(hsdev->dma->regs);
	}

	/* Initialize AHB DMAC */
	return dw_dma_probe(hsdev->dma);
@@ -1227,11 +1224,8 @@ static int sata_dwc_probe(struct platform_device *ofdev)
	/* Ioremap SATA registers */
	res = platform_get_resource(ofdev, IORESOURCE_MEM, 0);
	base = devm_ioremap_resource(&ofdev->dev, res);
	if (IS_ERR(base)) {
		dev_err(&ofdev->dev,
			"ioremap failed for SATA register address\n");
	if (IS_ERR(base))
		return PTR_ERR(base);
	}
	dev_dbg(&ofdev->dev, "ioremap done for SATA register address\n");

	/* Synopsys DWC SATA specific Registers */