Merge tag 'mmc-v5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc
[linux-2.6-microblaze.git] / drivers / crypto / img-hash.c
index e813115..aa4c7b2 100644 (file)
@@ -963,8 +963,6 @@ static int img_hash_probe(struct platform_device *pdev)
        hdev->io_base = devm_platform_ioremap_resource(pdev, 0);
        if (IS_ERR(hdev->io_base)) {
                err = PTR_ERR(hdev->io_base);
-               dev_err(dev, "can't ioremap, returned %d\n", err);
-
                goto res_err;
        }
 
@@ -972,7 +970,6 @@ static int img_hash_probe(struct platform_device *pdev)
        hash_res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
        hdev->cpu_addr = devm_ioremap_resource(dev, hash_res);
        if (IS_ERR(hdev->cpu_addr)) {
-               dev_err(dev, "can't ioremap write port\n");
                err = PTR_ERR(hdev->cpu_addr);
                goto res_err;
        }