You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
cavium: Return negative value when pci_alloc_irq_vectors() fails
[ Upstream commit b2cddb44bd ]
During the process of driver probing, the probe function should return < 0
for failure, otherwise, the kernel will treat value > 0 as success.
Signed-off-by: Zheyu Ma <zheyuma97@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
75710d583c
commit
940783d08d
@@ -1193,7 +1193,7 @@ static int nic_register_interrupts(struct nicpf *nic)
|
||||
dev_err(&nic->pdev->dev,
|
||||
"Request for #%d msix vectors failed, returned %d\n",
|
||||
nic->num_vec, ret);
|
||||
return 1;
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* Register mailbox interrupt handler */
|
||||
|
||||
Reference in New Issue
Block a user