mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
scsi: jazz_esp: Add IRQ check
[ Upstream commit38fca15c29
] The driver neglects to check the result of platform_get_irq()'s call and blithely passes the negative error codes to request_irq() (which takes *unsigned* IRQ #), causing it to fail with -EINVAL, overriding the real error code. Stop calling request_irq() with the invalid IRQ #s. Link: https://lore.kernel.org/r/594aa9ae-2215-49f6-f73c-33bd38989912@omprussia.ru Fixes:352e921f0d
("[SCSI] jazz_esp: converted to use esp_core") Signed-off-by: Sergey Shtylyov <s.shtylyov@omprussia.ru> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
7d81167e51
commit
18e729d21f
@ -143,7 +143,9 @@ static int esp_jazz_probe(struct platform_device *dev)
|
||||
if (!esp->command_block)
|
||||
goto fail_unmap_regs;
|
||||
|
||||
host->irq = platform_get_irq(dev, 0);
|
||||
host->irq = err = platform_get_irq(dev, 0);
|
||||
if (err < 0)
|
||||
goto fail_unmap_command_block;
|
||||
err = request_irq(host->irq, scsi_esp_intr, IRQF_SHARED, "ESP", esp);
|
||||
if (err < 0)
|
||||
goto fail_unmap_command_block;
|
||||
|
Loading…
Reference in New Issue
Block a user