Skip to content

Commit

Permalink
Merge branch 'modifying-format-and-renaming-goto-labels'
Browse files Browse the repository at this point in the history
Justin Lai says:

====================
Modifying format and renaming goto labels

This patch set primarily involves modifying the enum rtase_registers
format and renaming the goto labels in rtase_init_one.
====================

Link: https://patch.msgid.link/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
  • Loading branch information
kuba-moo committed Nov 16, 2024
2 parents bf3c76b + 39007e1 commit 2a8ce47
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion drivers/net/ethernet/realtek/rtase/rtase.h
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ enum rtase_registers {
RTASE_INT_MITI_TX = 0x0A00,
RTASE_INT_MITI_RX = 0x0A80,

RTASE_VLAN_ENTRY_0 = 0xAC80,
RTASE_VLAN_ENTRY_0 = 0xAC80,
};

enum rtase_desc_status_bit {
Expand Down
10 changes: 5 additions & 5 deletions drivers/net/ethernet/realtek/rtase/rtase_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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);
Expand All @@ -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),
Expand All @@ -2175,7 +2175,7 @@ static int rtase_init_one(struct pci_dev *pdev,
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);
Expand Down

0 comments on commit 2a8ce47

Please sign in to comment.