diff mbox series

scsi: gdth: remove unnecessary iounmap()

Message ID 20200620031150.152324-1-jingxiangfeng@huawei.com
State New
Headers show
Series scsi: gdth: remove unnecessary iounmap() | expand

Commit Message

Jing Xiangfeng June 20, 2020, 3:11 a.m. UTC
When initialization of ioremap() fails, it is not needed to do
iounmap(). Remove this iounmap.

Signed-off-by: Jing Xiangfeng <jingxiangfeng@huawei.com>
---
 drivers/scsi/gdth.c | 1 -
 1 file changed, 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/scsi/gdth.c b/drivers/scsi/gdth.c
index fe03410268e6..8f077d316e8b 100644
--- a/drivers/scsi/gdth.c
+++ b/drivers/scsi/gdth.c
@@ -639,7 +639,6 @@  static int gdth_init_pci(struct pci_dev *pdev, gdth_pci_str *pcistr,
         ha->brd = ioremap(pcistr->dpmem, sizeof(gdt6c_dpram_str));
         if (ha->brd == NULL) {
             printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
-            iounmap(ha->brd);
             return 0;
         }
         /* check and reset interface area */