Skip to content

Commit

Permalink
cavium: Fix return values of the probe function
Browse files Browse the repository at this point in the history
[ Upstream commit c69b2f4 ]

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>
  • Loading branch information
ZheyuMa authored and gregkh committed Nov 18, 2021
1 parent ad01685 commit 7986fdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/ethernet/cavium/thunder/nicvf_main.c
Expand Up @@ -1226,7 +1226,7 @@ static int nicvf_register_misc_interrupt(struct nicvf *nic)
if (ret < 0) {
netdev_err(nic->netdev,
"Req for #%d msix vectors failed\n", nic->num_vec);
return 1;
return ret;
}

sprintf(nic->irq_name[irq], "%s Mbox", "NICVF");
Expand All @@ -1245,7 +1245,7 @@ static int nicvf_register_misc_interrupt(struct nicvf *nic)
if (!nicvf_check_pf_ready(nic)) {
nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
nicvf_unregister_interrupts(nic);
return 1;
return -EIO;
}

return 0;
Expand Down

0 comments on commit 7986fdb

Please sign in to comment.