Skip to content

Commit

Permalink
net: usb: Fix typo in code
Browse files Browse the repository at this point in the history
Remove the repeated ';' from code.

Signed-off-by: Li kunyu <kunyu@nfschina.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Li kunyu authored and David S. Miller committed Jul 1, 2022
1 parent 71560d9 commit 8dfeee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/usb/catc.c
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ static int catc_probe(struct usb_interface *intf, const struct usb_device_id *id
intf->altsetting->desc.bInterfaceNumber, 1)) {
dev_err(dev, "Can't set altsetting 1.\n");
ret = -EIO;
goto fail_mem;;
goto fail_mem;
}

netdev = alloc_etherdev(sizeof(struct catc));
Expand Down

0 comments on commit 8dfeee9

Please sign in to comment.