Skip to content

Commit

Permalink
NFC: remove unnecessary break after goto
Browse files Browse the repository at this point in the history
Signed-off-by: Fabian Frederick <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Fabian Frederick authored and davem330 committed Jul 15, 2014
1 parent 66635dc commit 6c4c170
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions net/nfc/digital_dep.c
Original file line number Diff line number Diff line change
Expand Up @@ -457,12 +457,10 @@ static void digital_tg_recv_dep_req(struct nfc_digital_dev *ddev, void *arg,
pr_err("Received a ACK/NACK PDU\n");
rc = -EINVAL;
goto exit;
break;
case DIGITAL_NFC_DEP_PFB_SUPERVISOR_PDU:
pr_err("Received a SUPERVISOR PDU\n");
rc = -EINVAL;
goto exit;
break;
}

skb_pull(resp, size);
Expand Down

0 comments on commit 6c4c170

Please sign in to comment.