]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[SCSI] ufs: don't check resource with devm_ioremap_resource
authorWolfram Sang <wsa@the-dreams.de>
Mon, 29 Jul 2013 19:06:05 +0000 (00:36 +0530)
committerJames Bottomley <JBottomley@Parallels.com>
Mon, 26 Aug 2013 08:51:29 +0000 (12:51 +0400)
devm_ioremap_resource does sanity checks on the given resource. No need to
duplicate this in the driver.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Signed-off-by: Santosh Y <santoshsy@gmail.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
drivers/scsi/ufs/ufshcd-pltfrm.c

index 880d19fe2b06a91d31692fe5cb1f9f93f37e7854..5e462322542269b7aa424c20a10b4a803acf7d0d 100644 (file)
@@ -137,12 +137,6 @@ static int ufshcd_pltfrm_probe(struct platform_device *pdev)
        struct device *dev = &pdev->dev;
 
        mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       if (!mem_res) {
-               dev_err(dev, "Memory resource not available\n");
-               err = -ENODEV;
-               goto out;
-       }
-
        mmio_base = devm_ioremap_resource(dev, mem_res);
        if (IS_ERR(mmio_base)) {
                err = PTR_ERR(mmio_base);