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

Commit 645b8ef5 authored by Tomas Winkler's avatar Tomas Winkler Committed by Martin K. Petersen
Browse files

scsi: ufshcd-platform: remove the useless cast in ERR_PTR/IS_ERR



IS_ERR and ERR_PTR already forcefully cast their argument, hence there
is no need for additional (complex) casting.

Signed-off-by: default avatarTomas Winkler <tomas.winkler@intel.com>
Reviewed-by: default avatarSubhash Jadavani <subhashj@codeaurora.org>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 04688525
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -309,8 +309,8 @@ int ufshcd_pltfrm_init(struct platform_device *pdev,


	mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	mmio_base = devm_ioremap_resource(dev, mem_res);
	mmio_base = devm_ioremap_resource(dev, mem_res);
	if (IS_ERR(*(void **)&mmio_base)) {
	if (IS_ERR(mmio_base)) {
		err = PTR_ERR(*(void **)&mmio_base);
		err = PTR_ERR(mmio_base);
		goto out;
		goto out;
	}
	}