mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
rtase: Modify the name of the goto label
Modify the name of the goto label in rtase_init_one(). Signed-off-by: Justin Lai <justinlai0215@realtek.com> Reviewed-by: Simon Horman <horms@kernel.org> Link: https://patch.msgid.link/20241114112549.376101-2-justinlai0215@realtek.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
bf3c76b4c4
commit
fdb5379119
@ -2115,7 +2115,7 @@ static int rtase_init_one(struct pci_dev *pdev,
|
||||
ret = rtase_alloc_interrupt(pdev, tp);
|
||||
if (ret < 0) {
|
||||
dev_err(&pdev->dev, "unable to alloc MSIX/MSI\n");
|
||||
goto err_out_1;
|
||||
goto err_out_del_napi;
|
||||
}
|
||||
|
||||
rtase_init_netdev_ops(dev);
|
||||
@ -2148,7 +2148,7 @@ static int rtase_init_one(struct pci_dev *pdev,
|
||||
GFP_KERNEL);
|
||||
if (!tp->tally_vaddr) {
|
||||
ret = -ENOMEM;
|
||||
goto err_out;
|
||||
goto err_out_free_dma;
|
||||
}
|
||||
|
||||
rtase_tally_counter_clear(tp);
|
||||
@ -2159,13 +2159,13 @@ static int rtase_init_one(struct pci_dev *pdev,
|
||||
|
||||
ret = register_netdev(dev);
|
||||
if (ret != 0)
|
||||
goto err_out;
|
||||
goto err_out_free_dma;
|
||||
|
||||
netdev_dbg(dev, "%pM, IRQ %d\n", dev->dev_addr, dev->irq);
|
||||
|
||||
return 0;
|
||||
|
||||
err_out:
|
||||
err_out_free_dma:
|
||||
if (tp->tally_vaddr) {
|
||||
dma_free_coherent(&pdev->dev,
|
||||
sizeof(*tp->tally_vaddr),
|
||||
@ -2175,7 +2175,7 @@ err_out:
|
||||
tp->tally_vaddr = NULL;
|
||||
}
|
||||
|
||||
err_out_1:
|
||||
err_out_del_napi:
|
||||
for (i = 0; i < tp->int_nums; i++) {
|
||||
ivec = &tp->int_vector[i];
|
||||
netif_napi_del(&ivec->napi);
|
||||
|
Loading…
Reference in New Issue
Block a user