Message ID | 20220802073614.3213171-1-studentxswpy@163.com |
---|---|
State | New |
Headers | show |
Series | scsi: sun3x_esp: check the return value of ioremap() in esp_sun3x_probe() | expand |
diff --git a/drivers/scsi/sun3x_esp.c b/drivers/scsi/sun3x_esp.c index d3489ac7ab28..cc670b50a357 100644 --- a/drivers/scsi/sun3x_esp.c +++ b/drivers/scsi/sun3x_esp.c @@ -199,6 +199,8 @@ static int esp_sun3x_probe(struct platform_device *dev) goto fail_unmap_regs; esp->dma_regs = ioremap(res->start, 0x10); + if (!esp->dma_regs) + goto fail_unmap_regs; esp->command_block = dma_alloc_coherent(esp->dev, 16, &esp->command_block_dma,